X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=token.c;h=807f08fc34b4f2789b90bc557e5758dc11711018;hb=8cc58000c33d121dee192a5d21156c245fb7ab02;hp=f3cf619a5f41472ac36d9b5db140c4e8afc4f300;hpb=e1bd14aee0a611d213f524e9077f405c8794c979;p=rmac diff --git a/token.c b/token.c index f3cf619..807f08f 100644 --- a/token.c +++ b/token.c @@ -40,13 +40,6 @@ TOKEN tokeol[1] = {EOL}; // Bailout end-of-line token char * string[TOKBUFSIZE*2];// Token buffer string pointer storage int optimizeOff; // Optimization override flag -// File record, used to maintain a list of every include file ever visited -#define FILEREC struct _filerec -FILEREC -{ - FILEREC * frec_next; - char * frec_name; -}; FILEREC * filerec; FILEREC * last_fr;