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
17 lines
355 B
C
17 lines
355 B
C
/* $NetBSD: quote_calc3.tab.h,v 1.1.1.1 2015/01/03 22:58:26 christos Exp $ */
|
|
|
|
#ifndef _quote_calc3__defines_h_
|
|
#define _quote_calc3__defines_h_
|
|
|
|
#define OP_ADD 257
|
|
#define OP_SUB 259
|
|
#define OP_MUL 261
|
|
#define OP_DIV 263
|
|
#define OP_MOD 265
|
|
#define OP_AND 267
|
|
#define DIGIT 269
|
|
#define LETTER 270
|
|
#define UMINUS 271
|
|
|
|
#endif /* _quote_calc3__defines_h_ */
|