mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-16 01:36:41 +08:00

This file uses dynamic loading and is using some magic for statically linked modules included in it. These modules may or may not show up magically in an RTEMS executable. This will eventually have to be investigated and resolved.
15 lines
259 B
C
15 lines
259 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
|
|
typedef union {
|
|
char *str;
|
|
int mapval;
|
|
} YYSTYPE;
|
|
extern YYSTYPE _nsyylval;
|