diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-03 18:45:23 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-03 18:45:23 -0200 |
commit | 7135803cc87fafe80494bdc094613515487410b9 (patch) | |
tree | 439f9c6f1173707f7e37520c550e48edb5cafab8 /lobject.h | |
parent | b7567b667367180b75fbb60f7a73b75e5e89889e (diff) | |
download | lua-7135803cc87fafe80494bdc094613515487410b9.tar.gz lua-7135803cc87fafe80494bdc094613515487410b9.tar.bz2 lua-7135803cc87fafe80494bdc094613515487410b9.zip |
"global" version of a nil object.
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.6 1997/10/23 16:26:37 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.7 1997/10/24 17:17:24 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -166,6 +166,8 @@ extern unsigned long luaO_nblocks; | |||
166 | 166 | ||
167 | extern char *luaO_typenames[]; | 167 | extern char *luaO_typenames[]; |
168 | 168 | ||
169 | extern TObject luaO_nilobject; | ||
170 | |||
169 | int luaO_equalObj (TObject *t1, TObject *t2); | 171 | int luaO_equalObj (TObject *t1, TObject *t2); |
170 | int luaO_redimension (int oldsize); | 172 | int luaO_redimension (int oldsize); |
171 | int luaO_findstring (char *name, char *list[]); | 173 | int luaO_findstring (char *name, char *list[]); |