aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--browser-cli.c (renamed from browser-stdio.c)0
-rw-r--r--browser-cli.h (renamed from browser-stdio.h)4
-rw-r--r--browser.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 87b2596..cc77da1 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,4 @@ server:
.PHONY: browser
browser:
- gcc -g -o browser -I. sds/sds.c util.c browser.c browser-stdio.c
+ gcc -g -o browser -I. sds/sds.c util.c browser.c browser-cli.c
diff --git a/browser-stdio.c b/browser-cli.c
index 4f2ff3b..4f2ff3b 100644
--- a/browser-stdio.c
+++ b/browser-cli.c
diff --git a/browser-stdio.h b/browser-cli.h
index 3785c10..39f89bf 100644
--- a/browser-stdio.h
+++ b/browser-cli.h
@@ -1,5 +1,5 @@
-#ifndef BROWSER_STDIO
-#define BROWSER_STDIO
+#ifndef BROWSER_CLI
+#define BROWSER_CLI
#include <sds/sds.h>
diff --git a/browser.c b/browser.c
index 4b9e853..4d29478 100644
--- a/browser.c
+++ b/browser.c
@@ -11,7 +11,7 @@
#include <string.h>
#include <sds/sds.h>
#include <util.h>
-#include <browser-stdio.h>
+#include <browser-cli.h>
#define READ_BUFFER_SIZE 512