aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lobject.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lobject.h b/lobject.h
index 18cf2097..09f0d4e5 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.20 1998/06/11 18:21:37 roberto Exp roberto $ 2** $Id: lobject.h,v 1.21 1998/06/18 16:57:03 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*/
@@ -192,6 +192,9 @@ typedef struct Hash {
192 192
193extern char *luaO_typenames[]; 193extern char *luaO_typenames[];
194 194
195#define luaO_typename(o) luaO_typenames[-ttype(o)]
196
197
195extern TObject luaO_nilobject; 198extern TObject luaO_nilobject;
196 199
197int luaO_equalObj (TObject *t1, TObject *t2); 200int luaO_equalObj (TObject *t1, TObject *t2);