[PATCH 08/15] qbsp: parser.c statics

Signed-off-by: Tyrann <tyrann@disenchant.net>
This commit is contained in:
Tyrann 2006-09-10 22:45:59 +09:30
parent e89f25be80
commit a79e5c28b2
2 changed files with 1 additions and 2 deletions

View File

@ -24,8 +24,8 @@
int linenum;
char token[MAXTOKEN];
bool unget;
static bool unget;
static char *script;

View File

@ -28,7 +28,6 @@
extern int linenum;
extern char token[MAXTOKEN];
extern bool unget;
bool ParseToken(bool crossline);
void ParserInit(char *data);