From a79e5c28b22d9629a685321719379ecc2fc4c510 Mon Sep 17 00:00:00 2001 From: Tyrann Date: Sun, 10 Sep 2006 22:45:59 +0930 Subject: [PATCH] [PATCH 08/15] qbsp: parser.c statics Signed-off-by: Tyrann --- qbsp/parser.c | 2 +- qbsp/parser.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/qbsp/parser.c b/qbsp/parser.c index bc692951..6778ddfd 100644 --- a/qbsp/parser.c +++ b/qbsp/parser.c @@ -24,8 +24,8 @@ int linenum; char token[MAXTOKEN]; -bool unget; +static bool unget; static char *script; diff --git a/qbsp/parser.h b/qbsp/parser.h index 2dcec739..54593def 100644 --- a/qbsp/parser.h +++ b/qbsp/parser.h @@ -28,7 +28,6 @@ extern int linenum; extern char token[MAXTOKEN]; -extern bool unget; bool ParseToken(bool crossline); void ParserInit(char *data);