
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
38 lines
846 B
C
38 lines
846 B
C
/* $NetBSD: grammar.tab.h,v 1.1.1.1 2015/01/03 22:58:24 christos Exp $ */
|
|
|
|
#define T_IDENTIFIER 257
|
|
#define T_TYPEDEF_NAME 258
|
|
#define T_DEFINE_NAME 259
|
|
#define T_AUTO 260
|
|
#define T_EXTERN 261
|
|
#define T_REGISTER 262
|
|
#define T_STATIC 263
|
|
#define T_TYPEDEF 264
|
|
#define T_INLINE 265
|
|
#define T_EXTENSION 266
|
|
#define T_CHAR 267
|
|
#define T_DOUBLE 268
|
|
#define T_FLOAT 269
|
|
#define T_INT 270
|
|
#define T_VOID 271
|
|
#define T_LONG 272
|
|
#define T_SHORT 273
|
|
#define T_SIGNED 274
|
|
#define T_UNSIGNED 275
|
|
#define T_ENUM 276
|
|
#define T_STRUCT 277
|
|
#define T_UNION 278
|
|
#define T_Bool 279
|
|
#define T_Complex 280
|
|
#define T_Imaginary 281
|
|
#define T_TYPE_QUALIFIER 282
|
|
#define T_BRACKETS 283
|
|
#define T_LBRACE 284
|
|
#define T_MATCHRBRACE 285
|
|
#define T_ELLIPSIS 286
|
|
#define T_INITIALIZER 287
|
|
#define T_STRING_LITERAL 288
|
|
#define T_ASM 289
|
|
#define T_ASMARG 290
|
|
#define T_VA_DCL 291
|