summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Wiederhake <twied@gmx.net>2024-01-01 12:22:46 +0100
committerTim Wiederhake <twied@gmx.net>2024-01-01 12:22:46 +0100
commit3a4cc8b4b2baeb6b2e043c25495aede08a649641 (patch)
tree00817af9e2b75492dcb4298305ffc53e74c4f9e9
parentd26411efbc69e5350d9ae7cebbdb2e91738e3b8e (diff)
Remove redundant declaration of yyparse
yyparse is already declared in (the generated) gram.h. This silences a "redundant redeclaration of 'yyparse'" warning. Signed-off-by: Tim Wiederhake <twied@gmx.net>
-rw-r--r--src/twm.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/twm.h b/src/twm.h
index 57437cb..a7793da 100644
--- a/src/twm.h
+++ b/src/twm.h
@@ -417,8 +417,6 @@ extern Bool
GetWMState(Window w, int *statep, Window *iwp);
extern int
-yyparse(void);
-extern int
yylex(void);
extern void parseWarning(const char *, ...) GCC_PRINTFLIKE(1,2);