aboutsummaryrefslogtreecommitdiff
path: root/table.c
diff options
context:
space:
mode:
authorWaldemar Celes <celes@tecgraf.puc-rio.br>1994-08-03 11:15:46 -0300
committerWaldemar Celes <celes@tecgraf.puc-rio.br>1994-08-03 11:15:46 -0300
commitb1e9b37883ebc3f9926f6693350a73d6cbb94b6e (patch)
tree600f3e33d0dd976b0c2d6c86489f22ebcd129301 /table.c
parent467288e5b35d6f264bdded9b4d09dbaa0597f967 (diff)
downloadlua-b1e9b37883ebc3f9926f6693350a73d6cbb94b6e.tar.gz
lua-b1e9b37883ebc3f9926f6693350a73d6cbb94b6e.tar.bz2
lua-b1e9b37883ebc3f9926f6693350a73d6cbb94b6e.zip
Implementacao de funcoes para tratar Lua function em C e
correcoes de bugs nas tabelas dinamicas.
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