/* -------------------------------------------------------- * tokens.h * * Declarations for the tokens in the integer list problem * -------------------------------------------------------- */ #ifndef _TOKENS #define _TOKENS #define OLIST 1001 #define CLIST 1002 #define SEP 1003 #define NUM 1004 int lexval; #endif