File: gcode.tab.h

package info (click to toggle)
camv-rnd 1.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,824 kB
  • sloc: ansic: 35,928; sh: 686; makefile: 476; yacc: 110; awk: 3
file content (36 lines) | stat: -rw-r--r-- 687 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#define T_NUM 257
#define T_DEC 258
#define T_CHR 259
#define T_NL 260
#define T_LINENO 261
#define T_ACOS 262
#define T_ASIN 263
#define T_ATAN 264
#define T_ABS 265
#define T_COS 266
#define T_SIN 267
#define T_TAN 268
#define T_FIX 269
#define T_FUP 270
#define T_EXP 271
#define T_LN 272
#define T_ROUND 273
#define T_SQRT 274
#define T_MOD 275
#define UMINUS 276
#define UPLUS 277
#define T_OR 278
#define T_XOR 279
#define T_AND 280
#ifdef YYSTYPE
#undef  YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
#endif
#ifndef YYSTYPE_IS_DECLARED
#define YYSTYPE_IS_DECLARED 1
typedef union {
	double num;
	int chr;
} YYSTYPE;
#endif /* !YYSTYPE_IS_DECLARED */
extern YYSTYPE gcodelval;