summaryrefslogtreecommitdiff
path: root/table.c
diff options
context:
space:
mode:
Diffstat (limited to 'table.c')
-rw-r--r--table.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/table.c b/table.c
index 2fbcdc07..9ea24226 100644
--- a/table.c
+++ b/table.c
@@ -3,7 +3,7 @@
3** Module to control static tables 3** Module to control static tables
4*/ 4*/
5 5
6char *rcs_table="$Id: table.c,v 2.1 1994/04/20 22:07:57 celes Exp celes $"; 6char *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
24Symbol *lua_table; 24Symbol *lua_table;
25static Word lua_ntable = 0; 25static Word lua_ntable = 0;
26static Word lua_maxsymbol = 0; 26static Long lua_maxsymbol = 0;
27 27
28char **lua_constant; 28char **lua_constant;
29static Word lua_nconstant = 0; 29static Word lua_nconstant = 0;
30static Word lua_maxconstant = 0; 30static Long lua_maxconstant = 0;
31 31
32 32
33 33