summaryrefslogtreecommitdiff
path: root/xkbscan.c
diff options
context:
space:
mode:
authorPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-21 20:43:28 -0200
committerPaulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>2009-01-21 20:43:28 -0200
commitf099da35386cf63d4935ba2613409ff28b3d7ea5 (patch)
tree23c0f8101fabceeef4bc023742a10dd85a4da419 /xkbscan.c
parent82cebb165b22d5409c9d4d31554a8da0c867e0d3 (diff)
downloadxorg-app-xkbcomp-f099da35386cf63d4935ba2613409ff28b3d7ea5.tar.gz
Correct make distcheck and most gcc and sparse warnings.
Remaining warnings are due to macros that check address or vectors on the stack and auto generated yacc code. Compiled with default flags and also as: % make CFLAGS=-DENTRY_TRACKING_ON -DDEBUG_ON -DASSERTIONS_ON to ensure the "simplification" of code like: foo.c: <hash>define DEBUG_VAR foo_VAR <hash>include "foo.h" ... foo.h: <hash>ifdef DEBUG_VAR_NOT_LOCAL extern <hash>endif int DEBUG_VAR; ... did not change the author's "intended" logic.
Diffstat (limited to 'xkbscan.c')
-rw-r--r--xkbscan.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/xkbscan.c b/xkbscan.c
index bc7e230..31cafd4 100644
--- a/xkbscan.c
+++ b/xkbscan.c
@@ -35,6 +35,8 @@
#include "utils.h"
#include "parseutils.h"
+unsigned int scanDebug;
+
FILE *yyin = NULL;
static char scanFileBuf[1024] = {0};
@@ -42,20 +44,15 @@ char *scanFile = scanFileBuf;
int lineNum = 0;
int scanInt;
-char *scanIntStr;
-int scanIntClass;
char *scanStr = NULL;
-int scanStrLine = 0;
+static int scanStrLine = 0;
#define BUFSIZE 512
static int nInBuf = 0;
static char buf[BUFSIZE];
#ifdef DEBUG
-
-extern unsigned debugFlags;
-
static char *
tokText(int tok)
{
@@ -446,7 +443,7 @@ yyGetKeyName(void)
return ERROR_TOK;
}
-struct _Keyword
+static struct _Keyword
{
const char *keyword;
int token;
@@ -543,7 +540,7 @@ struct _Keyword
{
"alternate_group", ALTERNATE_GROUP}
};
-int numKeywords = sizeof(keywords) / sizeof(struct _Keyword);
+static int numKeywords = sizeof(keywords) / sizeof(struct _Keyword);
static int
yyGetIdent(int first)