these should be generated with byacc, not bison

This commit is contained in:
Todd C. Miller
1999-08-24 16:40:58 +00:00
parent 7b0368f2f4
commit 25d75cea68
2 changed files with 1174 additions and 1616 deletions

2730
sudo.tab.c

File diff suppressed because it is too large Load Diff

View File

@@ -1,9 +1,3 @@
typedef union {
char *string;
int BOOLEAN;
struct sudo_command command;
int tok;
} YYSTYPE;
#define COMMAND 257
#define ALIAS 258
#define NTWKADDR 259
@@ -21,6 +15,10 @@ typedef union {
#define USERALIAS 271
#define RUNASALIAS 272
#define ERROR 273
typedef union {
char *string;
int BOOLEAN;
struct sudo_command command;
int tok;
} YYSTYPE;
extern YYSTYPE yylval;