]> Shamusworld >> Repos - rmac/blobdiff - token.c
Fix for bug #174 - when a macro contains an error, actually print the filename it...
[rmac] / token.c
diff --git a/token.c b/token.c
index f3cf619a5f41472ac36d9b5db140c4e8afc4f300..807f08fc34b4f2789b90bc557e5758dc11711018 100644 (file)
--- 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;