aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-19 11:56:46 +0200
committerlemon <lsof@mailbox.org>2023-06-19 11:56:46 +0200
commitb71515071d1310bbf9cd34f8997aa736ebd30099 (patch)
treef14ac1364d508ad2f1e8cdcda59b4dc9bae96f21 /io.c
parent08649c95cc15b5ad99e6b8899d639f6c3b63266b (diff)
frontend: separate compiler & lexer
Diffstat (limited to 'io.c')
-rw-r--r--io.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/io.c b/io.c
index eb29ca7..d8652e3 100644
--- a/io.c
+++ b/io.c
@@ -1,11 +1,10 @@
-#include "parse.h"
+#include "lex.h"
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/stat.h>
-#include <sys/sysmacros.h>
#include <unistd.h>
#include <errno.h>