diff options
-rw-r--r-- | cc.h | 2 | ||||
-rw-r--r-- | pp.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -375,7 +375,7 @@ void ppinit(const char *); void next(void); _Bool peek(int); -char *expect(int, const char *); +char *expect(enum tokenkind, const char *); _Bool consume(int); /* type */ @@ -123,7 +123,7 @@ peek(int kind) } char * -expect(int kind, const char *msg) +expect(enum tokenkind kind, const char *msg) { char *lit, want[64], got[64]; |