#ifndef __LEXER__H__ #define __LEXER__H__ #define NUMBER 257 #define POP 258 #define POPALL 259 #define UNKNOWN 260 #include "calc.h" int lex(); extern number val; /* if lex returns NUMBER then the actual value is stored here */ #endif