Files
sudo/sudo.tab.h
Todd C. Miller 270e6cab72 regen
2003-01-17 23:10:05 +00:00

29 lines
570 B
C

#define COMMAND 257
#define ALIAS 258
#define DEFVAR 259
#define NTWKADDR 260
#define NETGROUP 261
#define USERGROUP 262
#define WORD 263
#define DEFAULTS 264
#define DEFAULTS_HOST 265
#define DEFAULTS_USER 266
#define DEFAULTS_RUNAS 267
#define RUNAS 268
#define NOPASSWD 269
#define PASSWD 270
#define ALL 271
#define COMMENT 272
#define HOSTALIAS 273
#define CMNDALIAS 274
#define USERALIAS 275
#define RUNASALIAS 276
#define ERROR 277
typedef union {
char *string;
int BOOLEAN;
struct sudo_command command;
int tok;
} YYSTYPE;
extern YYSTYPE yylval;