aboutsummaryrefslogtreecommitdiff
path: root/lobject.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-25 14:45:36 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-01-25 14:45:36 -0200
commita53d9b66ca6247818acaf41e28cdf123082a272b (patch)
tree8e909200d4d925fc7394e6adf83cc5941456c588 /lobject.h
parentc8559e3c8d12e052783e2952db1372c68cc16059 (diff)
downloadlua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.gz
lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.bz2
lua-a53d9b66ca6247818acaf41e28cdf123082a272b.zip
first implementation for type names
Diffstat (limited to 'lobject.h')
-rw-r--r--lobject.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/lobject.h b/lobject.h
index d025e43d..008b56ab 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lobject.h,v 1.86 2001/01/18 15:59:09 roberto Exp roberto $ 2** $Id: lobject.h,v 1.87 2001/01/19 13:20:30 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*/
@@ -212,10 +212,6 @@ typedef struct CallInfo {
212 212
213 213
214extern const TObject luaO_nilobject; 214extern const TObject luaO_nilobject;
215extern const char *const luaO_typenames[];
216
217
218#define luaO_typename(o) (luaO_typenames[ttype(o)])
219 215
220 216
221luint32 luaO_power2 (luint32 n); 217luint32 luaO_power2 (luint32 n);