aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-03 18:45:23 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-11-03 18:45:23 -0200
commit7135803cc87fafe80494bdc094613515487410b9 (patch)
tree439f9c6f1173707f7e37520c550e48edb5cafab8 /lobject.h
parentb7567b667367180b75fbb60f7a73b75e5e89889e (diff)
downloadlua-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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 7e9afd62..6cf77303 100644
--- a/lobject.h
+++ b/lobject.h
@@ -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
167extern char *luaO_typenames[]; 167extern char *luaO_typenames[];
168 168
169extern TObject luaO_nilobject;
170
169int luaO_equalObj (TObject *t1, TObject *t2); 171int luaO_equalObj (TObject *t1, TObject *t2);
170int luaO_redimension (int oldsize); 172int luaO_redimension (int oldsize);
171int luaO_findstring (char *name, char *list[]); 173int luaO_findstring (char *name, char *list[]);