diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-25 14:45:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-01-25 14:45:36 -0200 |
commit | a53d9b66ca6247818acaf41e28cdf123082a272b (patch) | |
tree | 8e909200d4d925fc7394e6adf83cc5941456c588 /lobject.h | |
parent | c8559e3c8d12e052783e2952db1372c68cc16059 (diff) | |
download | lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.gz lua-a53d9b66ca6247818acaf41e28cdf123082a272b.tar.bz2 lua-a53d9b66ca6247818acaf41e28cdf123082a272b.zip |
first implementation for type names
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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 | ||
214 | extern const TObject luaO_nilobject; | 214 | extern const TObject luaO_nilobject; |
215 | extern const char *const luaO_typenames[]; | ||
216 | |||
217 | |||
218 | #define luaO_typename(o) (luaO_typenames[ttype(o)]) | ||
219 | 215 | ||
220 | 216 | ||
221 | luint32 luaO_power2 (luint32 n); | 217 | luint32 luaO_power2 (luint32 n); |