- Removed some old-fashioned defines, replacing them with enum constants.

This commit is contained in:
ccremers
2004-07-29 11:26:59 +00:00
parent b22667a791
commit d181365e3e
4 changed files with 30 additions and 33 deletions

View File

@@ -6,11 +6,7 @@
*/
#define HASHSIZE 997
#define T_UNDEF -1
#define T_PROTOCOL 0
#define T_CONST 1
#define T_VAR 2
#define T_SYSCONST 3
enum symboltypes { T_UNDEF = -1, T_PROTOCOL, T_CONST, T_VAR, T_SYSCONST };
#define EOS 0