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
23 lines
451 B
C
23 lines
451 B
C
/* $NetBSD: quote_calc2.tab.h,v 1.1.1.1 2015/01/03 22:58:25 christos Exp $ */
|
|
|
|
#ifndef _quote_calc2__defines_h_
|
|
#define _quote_calc2__defines_h_
|
|
|
|
#define OP_ADD 257
|
|
#define ADD 258
|
|
#define OP_SUB 259
|
|
#define SUB 260
|
|
#define OP_MUL 261
|
|
#define MUL 262
|
|
#define OP_DIV 263
|
|
#define DIV 264
|
|
#define OP_MOD 265
|
|
#define MOD 266
|
|
#define OP_AND 267
|
|
#define AND 268
|
|
#define DIGIT 269
|
|
#define LETTER 270
|
|
#define UMINUS 271
|
|
|
|
#endif /* _quote_calc2__defines_h_ */
|