mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-13 14:49:25 +08:00

Update nsparser.h to fit with the files introduced via e35a65e99512000ab0107c4fc64f89aa84f7de38.
22 lines
431 B
C
22 lines
431 B
C
#define NL 257
|
|
#define SUCCESS 258
|
|
#define UNAVAIL 259
|
|
#define NOTFOUND 260
|
|
#define TRYAGAIN 261
|
|
#define RETURN 262
|
|
#define CONTINUE 263
|
|
#define ERRORTOKEN 264
|
|
#define STRING 265
|
|
#ifdef YYSTYPE
|
|
#undef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
#ifndef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
typedef union {
|
|
char *str;
|
|
int mapval;
|
|
} YYSTYPE;
|
|
#endif /* !YYSTYPE_IS_DECLARED */
|
|
extern YYSTYPE _nsyylval;
|