12088Ssos/*-
2228976Suqs * Copyright (c) 1994-1995 S��ren Schmidt
32088Ssos * All rights reserved.
42088Ssos *
52088Ssos * Redistribution and use in source and binary forms, with or without
62088Ssos * modification, are permitted provided that the following conditions
72088Ssos * are met:
82088Ssos * 1. Redistributions of source code must retain the above copyright
95994Ssos *    notice, this list of conditions and the following disclaimer,
105994Ssos *    in this position and unchanged.
112088Ssos * 2. Redistributions in binary form must reproduce the above copyright
122088Ssos *    notice, this list of conditions and the following disclaimer in the
132088Ssos *    documentation and/or other materials provided with the distribution.
142088Ssos * 3. The name of the author may not be used to endorse or promote products
1597748Sschweikh *    derived from this software without specific prior written permission
162088Ssos *
172088Ssos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
182088Ssos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
192088Ssos * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
202088Ssos * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
212088Ssos * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
222088Ssos * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232088Ssos * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242088Ssos * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252088Ssos * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
262088Ssos * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272088Ssos *
2850479Speter * $FreeBSD$
292088Ssos */
302088Ssos
312088Ssos#define TNOP		256
322088Ssos#define TLSH		257
332088Ssos#define TRSH		258
342088Ssos#define TCLK		259
352088Ssos#define TNLK		260
362088Ssos#define TSLK		261
372088Ssos#define TLALT		262
382088Ssos#define TLCTR		263
392088Ssos#define TNEXT		264
402088Ssos#define TRCTR		265
412088Ssos#define TRALT		266
422088Ssos#define TALK		267
432088Ssos#define TASH		268
442088Ssos#define TMETA		269
452088Ssos#define TRBT		270
462088Ssos#define TDBG		271
472088Ssos#define TFUNC		272
482088Ssos#define TSCRN		273
492088Ssos#define TLET		274
502088Ssos#define TNUM		275
512088Ssos#define TFLAG		276
522088Ssos#define TBTAB		277
535994Ssos#define TSUSP		278
5432316Syokota#define TACC		279
5538053Syokota#define TSPSC		280
5648105Syokota#define TPREV		281
5754380Syokota#define TPANIC		282
5854380Syokota#define TLSHA		283
5954380Syokota#define TRSHA		284
6054380Syokota#define TLCTRA		285
6154380Syokota#define TRCTRA		286
6254380Syokota#define TLALTA		287
6354380Syokota#define TRALTA		288
6465759Sdwmalone#define THALT		289
6565759Sdwmalone#define TPDWN		290
6674118Sache#define TPASTE		291
672088Ssos
682088Ssosextern int number;
692088Ssosextern char letter;
702088Ssosextern FILE *yyin;
7177394Ssobomax
7299818Salfredextern int yylex(void);
73