diff options
Diffstat (limited to 'table.c')
-rw-r--r-- | table.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ | |||
3 | ** Module to control static tables | 3 | ** Module to control static tables |
4 | */ | 4 | */ |
5 | 5 | ||
6 | char *rcs_table="$Id: table.c,v 2.1 1994/04/20 22:07:57 celes Exp celes $"; | 6 | char *rcs_table="$Id: table.c,v 2.2 1994/07/19 21:27:18 celes Exp celes $"; |
7 | 7 | ||
8 | #include <stdlib.h> | 8 | #include <stdlib.h> |
9 | #include <string.h> | 9 | #include <string.h> |
@@ -23,11 +23,11 @@ char *rcs_table="$Id: table.c,v 2.1 1994/04/20 22:07:57 celes Exp celes $"; | |||
23 | 23 | ||
24 | Symbol *lua_table; | 24 | Symbol *lua_table; |
25 | static Word lua_ntable = 0; | 25 | static Word lua_ntable = 0; |
26 | static Word lua_maxsymbol = 0; | 26 | static Long lua_maxsymbol = 0; |
27 | 27 | ||
28 | char **lua_constant; | 28 | char **lua_constant; |
29 | static Word lua_nconstant = 0; | 29 | static Word lua_nconstant = 0; |
30 | static Word lua_maxconstant = 0; | 30 | static Long lua_maxconstant = 0; |
31 | 31 | ||
32 | 32 | ||
33 | 33 | ||