diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -584,7 +584,6 @@ char *getnextline(struct filepointer *filep) *eof, /* end of file pointer */ *bol; /* beginning of line pointer */ int lineno; /* line number */ - boolean whitespace = FALSE; /* * Fake the "-include" line files in form of #include to the @@ -614,7 +613,6 @@ char *getnextline(struct filepointer *filep) p++; bol++; } - whitespace = TRUE; } if (*p == '/' && (p+1) < eof && *(p+1) == '*') { @@ -686,7 +684,6 @@ char *getnextline(struct filepointer *filep) --p; } bol = p+1; - whitespace = FALSE; } } if (*bol != '#') |