diff options
author | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-08-03 11:15:46 -0300 |
---|---|---|
committer | Waldemar Celes <celes@tecgraf.puc-rio.br> | 1994-08-03 11:15:46 -0300 |
commit | b1e9b37883ebc3f9926f6693350a73d6cbb94b6e (patch) | |
tree | 600f3e33d0dd976b0c2d6c86489f22ebcd129301 /table.c | |
parent | 467288e5b35d6f264bdded9b4d09dbaa0597f967 (diff) | |
download | lua-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.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 | ||