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
28 lines
579 B
C++
28 lines
579 B
C++
/* $NetBSD: err_inherit3.tab.h,v 1.1.1.1 2015/01/03 22:58:24 christos Exp $ */
|
|
|
|
#ifndef _err_inherit3__defines_h_
|
|
#define _err_inherit3__defines_h_
|
|
|
|
#define GLOBAL 257
|
|
#define LOCAL 258
|
|
#define REAL 259
|
|
#define INTEGER 260
|
|
#define NAME 261
|
|
#ifdef YYSTYPE
|
|
#undef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
#endif
|
|
#ifndef YYSTYPE_IS_DECLARED
|
|
#define YYSTYPE_IS_DECLARED 1
|
|
typedef union
|
|
{
|
|
class cval;
|
|
type tval;
|
|
namelist * nlist;
|
|
name id;
|
|
} YYSTYPE;
|
|
#endif /* !YYSTYPE_IS_DECLARED */
|
|
extern YYSTYPE err_inherit3_lval;
|
|
|
|
#endif /* _err_inherit3__defines_h_ */
|