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