mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 06:42:26 +00:00
make gas2masm drop any "preprocessor" directives (any line where the first non-whitespace char is #)
This commit is contained in:
parent
2fc438ca13
commit
cf01a7c2f2
1 changed files with 12 additions and 0 deletions
|
@ -805,6 +805,18 @@ int gettoken (void)
|
|||
return LINE_DONE;
|
||||
} while (stat == WHITESPACE);
|
||||
|
||||
if (c == '#')
|
||||
{
|
||||
do
|
||||
{
|
||||
if ((c = getchar()) == EOF)
|
||||
return FILE_DONE;
|
||||
} while (whitespace(c) != LINE_DONE);
|
||||
|
||||
return LINE_DONE;
|
||||
}
|
||||
|
||||
|
||||
token[0] = c;
|
||||
count = 1;
|
||||
|
||||
|
|
Loading…
Reference in a new issue