File: gram.h

package info (click to toggle)
rpncalc 1.31.13
  • links: PTS
  • area: main
  • in suites: woody
  • size: 828 kB
  • ctags: 262
  • sloc: sh: 2,624; ansic: 1,836; lex: 335; sed: 312; yacc: 118; makefile: 88
file content (23 lines) | stat: -rw-r--r-- 389 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef BISON_Y_TAB_H
# define BISON_Y_TAB_H

#ifndef YYSTYPE
typedef union {
	        char    *name;
	        struct cmd *func;
                double   dnum;
		long int inum;
       } yystype;
# define YYSTYPE yystype
#endif
# define	VAR	257
# define	INT	258
# define	REAL	259
# define	CMD	260
# define	FUNC	261
# define	HELP	262


extern YYSTYPE yylval;

#endif /* not BISON_Y_TAB_H */