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 bd6e805b..4206f6cd 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.47 1996/02/14 18:25:04 roberto Exp roberto $"; 6char *rcs_table="$Id: table.c,v 2.48 1996/02/26 21:00:27 roberto Exp roberto $";
7 7
8#include "mem.h" 8#include "mem.h"
9#include "opcode.h" 9#include "opcode.h"
@@ -19,11 +19,11 @@ char *rcs_table="$Id: table.c,v 2.47 1996/02/14 18:25:04 roberto Exp roberto $";
19#define BUFFER_BLOCK 256 19#define BUFFER_BLOCK 256
20 20
21Symbol *lua_table = NULL; 21Symbol *lua_table = NULL;
22static Word lua_ntable = 0; 22Word lua_ntable = 0;
23static Long lua_maxsymbol = 0; 23static Long lua_maxsymbol = 0;
24 24
25TaggedString **lua_constant = NULL; 25TaggedString **lua_constant = NULL;
26static Word lua_nconstant = 0; 26Word lua_nconstant = 0;
27static Long lua_maxconstant = 0; 27static Long lua_maxconstant = 0;
28 28
29 29