
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
33 lines
624 B
C
33 lines
624 B
C
/* $NetBSD: ok_syntax1.tab.h,v 1.1.1.1 2015/01/03 22:58:24 christos Exp $ */
|
|
|
|
#define DIGIT 257
|
|
#define LETTER 258
|
|
#define OCT1 259
|
|
#define HEX1 260
|
|
#define HEX2 261
|
|
#define HEX3 262
|
|
#define STR1 263
|
|
#define STR2 265
|
|
#define BELL 266
|
|
#define BS 267
|
|
#define NL 268
|
|
#define LF 269
|
|
#define CR 270
|
|
#define TAB 271
|
|
#define VT 272
|
|
#define UMINUS 273
|
|
#ifdef YYSTYPE
|
|
#undef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
#ifndef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
typedef union
|
|
{
|
|
char * cval;
|
|
int ival;
|
|
double dval;
|
|
} YYSTYPE;
|
|
#endif /* !YYSTYPE_IS_DECLARED */
|
|
extern YYSTYPE ok_syntax1_lval;
|