diff options
author | Tim Wiederhake <twied@gmx.net> | 2024-01-01 12:22:46 +0100 |
---|---|---|
committer | Tim Wiederhake <twied@gmx.net> | 2024-01-01 12:22:46 +0100 |
commit | 3a4cc8b4b2baeb6b2e043c25495aede08a649641 (patch) | |
tree | 00817af9e2b75492dcb4298305ffc53e74c4f9e9 | |
parent | d26411efbc69e5350d9ae7cebbdb2e91738e3b8e (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.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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); |