X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fcc65%2Fpreproc.h;h=b6fc559cfca89a628099dd08297327a3851a4b8d;hb=aef8789873bd008d42aa50330ca98488fad91b31;hp=194d11c358cfbd38320670f5f0d2793c99be2272;hpb=53dd513176425872128ef26031d00952ef7a0628;p=cc65 diff --git a/src/cc65/preproc.h b/src/cc65/preproc.h index 194d11c35..b6fc559cf 100644 --- a/src/cc65/preproc.h +++ b/src/cc65/preproc.h @@ -17,12 +17,6 @@ -/* Token table entry */ -struct tok_elt { - char *toknam; - int toknbr; -}; - /* Set when the pp calls expr() recursively */ extern unsigned char Preprocessing; @@ -34,10 +28,7 @@ extern unsigned char Preprocessing; -int searchtok (const char *sym, const struct tok_elt* toks); -/* Search a token in a table */ - -void preprocess (void); +void Preprocess (void); /* Preprocess a line */ @@ -47,5 +38,3 @@ void preprocess (void); - -