1/*	$NetBSD: btyacc_calc1.tab.h,v 1.1.1.4 2018/12/23 15:26:13 christos Exp $	*/
2
3#ifndef _calc1__defines_h_
4#define _calc1__defines_h_
5
6#define DREG 257
7#define VREG 258
8#define CONST 259
9#define UMINUS 260
10#ifdef YYSTYPE
11#undef  YYSTYPE_IS_DECLARED
12#define YYSTYPE_IS_DECLARED 1
13#endif
14#ifndef YYSTYPE_IS_DECLARED
15#define YYSTYPE_IS_DECLARED 1
16typedef union
17{
18	int ival;
19	double dval;
20	INTERVAL vval;
21} YYSTYPE;
22#endif /* !YYSTYPE_IS_DECLARED */
23
24#endif /* _calc1__defines_h_ */
25