122763Smckusick /*
222763Smckusick  * Copyright (c) 1982 Regents of the University of California.
322763Smckusick  * All rights reserved.  The Berkeley software License Agreement
422763Smckusick  * specifies the terms and conditions for redistribution.
522766Smckusick  *
6*22771Smckusick  *	@(#)y.tab.h	5.3 (Berkeley) 06/07/85
722763Smckusick  */
85474Slinton 
95474Slinton typedef union  {
105474Slinton 	SYM *y_sym;
115474Slinton 	NODE *y_node;
125474Slinton 	int y_int;
135474Slinton 	OP y_op;
145474Slinton 	long y_long;
155474Slinton 	double y_real;
165474Slinton 	char *y_string;
175474Slinton 	BOOLEAN y_bool;
185474Slinton } YYSTYPE;
195474Slinton extern YYSTYPE yylval;
205474Slinton # define ALIAS 257
215474Slinton # define ASSIGN 258
225474Slinton # define CALL 259
235474Slinton # define CHFILE 260
245474Slinton # define CONT 261
255474Slinton # define DUMP 262
265474Slinton # define EDIT 263
275474Slinton # define HELP 264
285474Slinton # define LIST 265
295474Slinton # define NEXT 266
305474Slinton # define QUIT 267
315474Slinton # define REMAKE 268
325474Slinton # define PRINT 269
335474Slinton # define RUN 270
345474Slinton # define SH 271
355474Slinton # define SOURCE 272
365474Slinton # define STATUS 273
375474Slinton # define STEP 274
385474Slinton # define STOP 275
395474Slinton # define STOPI 276
405474Slinton # define TRACE 277
415474Slinton # define TRACEI 278
425474Slinton # define DELETE 279
435474Slinton # define WHATIS 280
445474Slinton # define WHICH 281
455474Slinton # define WHERE 282
465474Slinton # define XI 283
475474Slinton # define XD 284
485474Slinton # define AT 285
495474Slinton # define IN 286
505474Slinton # define IF 287
515474Slinton # define FILENAME 288
525474Slinton # define INT 289
535474Slinton # define REAL 290
545474Slinton # define NAME 291
555474Slinton # define STRING 292
565474Slinton # define DIV 293
575474Slinton # define MOD 294
585474Slinton # define AND 295
595474Slinton # define OR 296
605474Slinton # define NOT 297
615474Slinton # define UNARYSIGN 298
62*22771Smckusick # define GRIPE 299
63