aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/cc.h b/cc.h
index 62c9780..3e6eecf 100644
--- a/cc.h
+++ b/cc.h
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
struct func;
enum tokenkind {
@@ -374,10 +376,13 @@ _Noreturn void error(const struct location *, const char *, ...);
/* scan */
-int scanfrom(const char *file);
+void scanfrom(const char *, FILE *);
+void scanopen(void);
void scan(struct token *);
-void ppinit(const char *);
+/* preprocessor */
+
+void ppinit(void);
void next(void);
_Bool peek(int);