diff options
author | Martin Mares <mj@ucw.cz> | 1999-11-15 11:34:51 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-11-15 11:34:51 +0000 |
commit | cbc31830079fb5e49c14c3de446b10ed8da99ce0 (patch) | |
tree | ce25a530c44e54259eca8566855ced7af99cae1e /conf/conf.h | |
parent | 4515bdba4f56b298e62150ffe24608ba1a42e7da (diff) |
SYM_STAT is gone.
Diffstat (limited to 'conf/conf.h')
-rw-r--r-- | conf/conf.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/conf/conf.h b/conf/conf.h index 47b67e7a..ec8be407 100644 --- a/conf/conf.h +++ b/conf/conf.h @@ -61,12 +61,11 @@ struct symbol { #define SYM_VOID 0 #define SYM_PROTO 1 #define SYM_NUMBER 2 -#define SYM_STAT 3 /* statement */ -#define SYM_FUNCTION 5 -#define SYM_FILTER 6 -#define SYM_TABLE 7 +#define SYM_FUNCTION 3 +#define SYM_FILTER 4 +#define SYM_TABLE 5 -#define SYM_VARIABLE 0x100 /* Reserved 0x100..0x1ff */ +#define SYM_VARIABLE 0x100 /* 0x100-0x1ff are variable types */ extern int conf_lino; |