From: Todd C. Miller Date: Tue, 6 Jan 2004 06:42:14 +0000 (+0000) Subject: Regen w/ updated byacc from OpenBSD; fixes a gcc 3.2 issue with generated code. X-Git-Tag: SUDO_1_6_8~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bac45090aeafab9b893d988ed7e72534ecd0f081;p=sudo Regen w/ updated byacc from OpenBSD; fixes a gcc 3.2 issue with generated code. --- diff --git a/sudo.tab.h b/sudo.tab.h index ce62976af..9a0cce10e 100644 --- a/sudo.tab.h +++ b/sudo.tab.h @@ -21,10 +21,13 @@ #define USERALIAS 277 #define RUNASALIAS 278 #define ERROR 279 +#ifndef YYSTYPE_DEFINED +#define YYSTYPE_DEFINED typedef union { char *string; int BOOLEAN; struct sudo_command command; int tok; } YYSTYPE; +#endif /* YYSTYPE_DEFINED */ extern YYSTYPE yylval;