# HG changeset patch # User William Astle # Date 1384314074 25200 # Node ID 73b2bfa17ab09f9067f809e5a6492e92f0adac4a # Parent 41118fb0a8f250a70a754ecfc0e640ec48240947 Checkpoint diff -r 41118fb0a8f2 -r 73b2bfa17ab0 lwcc/cpp-main.c --- a/lwcc/cpp-main.c Sat Sep 21 18:43:39 2013 -0600 +++ b/lwcc/cpp-main.c Tue Nov 12 20:41:14 2013 -0700 @@ -24,7 +24,7 @@ #include #include #include - +#include #include #include #include diff -r 41118fb0a8f2 -r 73b2bfa17ab0 lwcc/preproc.c --- a/lwcc/preproc.c Sat Sep 21 18:43:39 2013 -0600 +++ b/lwcc/preproc.c Tue Nov 12 20:41:14 2013 -0700 @@ -40,6 +40,8 @@ extern struct token *preproc_lex_next_token(struct preproc_info *); static long preproc_numval(struct preproc_info *, struct token *); static int eval_escape(char **); +extern int preproc_lex_fetch_byte(struct preproc_info *); +extern void preproc_lex_unfetch_byte(struct preproc_info *, int); struct token *preproc_next_processed_token(struct preproc_info *pp)