aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/io.c b/src/io.c
index 5cd5e86..fb21672 100644
--- a/src/io.c
+++ b/src/io.c
@@ -1,15 +1,5 @@
-struct SourceLocation {
- const char* filename;
- int line;
-};
-typedef struct SourceLocation SourceLocation;
-
-struct InFile {
- const char* buf;
- int pos;
- SourceLocation loc;
-};
-typedef struct InFile InFile;
+#include "io.h"
+#include "common.h"
InFile* infile_open(const char* filename) {
FILE* in;