source: rtems-libbsd/freebsd/lib/libc/net/nsparser.h @ 4d235ad

4.11
Last change on this file since 4d235ad was 4d235ad, checked in by Sebastian Huber <sebastian.huber@…>, on 10/14/15 at 11:01:03

NSDISPATCH(3): Add proper nsparser.h

Update nsparser.h to fit with the files introduced via
e35a65e99512000ab0107c4fc64f89aa84f7de38.

  • Property mode set to 100644
File size: 431 bytes
Line 
1#define NL 257
2#define SUCCESS 258
3#define UNAVAIL 259
4#define NOTFOUND 260
5#define TRYAGAIN 261
6#define RETURN 262
7#define CONTINUE 263
8#define ERRORTOKEN 264
9#define STRING 265
10#ifdef YYSTYPE
11#undef  YYSTYPE_IS_DECLARED
12#define YYSTYPE_IS_DECLARED 1
13#endif
14#ifndef YYSTYPE_IS_DECLARED
15#define YYSTYPE_IS_DECLARED 1
16typedef union {
17        char *str;
18        int   mapval;
19} YYSTYPE;
20#endif /* !YYSTYPE_IS_DECLARED */
21extern YYSTYPE _nsyylval;
Note: See TracBrowser for help on using the repository browser.