diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-11 17:29:27 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-09-11 17:29:27 -0300 |
commit | 8060193702b21a06af3541555db4cd317c733ce9 (patch) | |
tree | d1cfa3a4ac41dc6766188680659c1bd1311e22a8 /lobject.h | |
parent | 2779e81fbbdebf8b7cac97c167ff109bad537c4b (diff) | |
download | lua-8060193702b21a06af3541555db4cd317c733ce9.tar.gz lua-8060193702b21a06af3541555db4cd317c733ce9.tar.bz2 lua-8060193702b21a06af3541555db4cd317c733ce9.zip |
`lauxlib' is now part of the libraries (not used by core Lua)
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 1.74 2000/08/22 17:44:17 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 1.75 2000/09/11 17:38:42 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 | */ |
@@ -198,5 +198,8 @@ char *luaO_openspace (lua_State *L, size_t n); | |||
198 | int luaO_equalObj (const TObject *t1, const TObject *t2); | 198 | int luaO_equalObj (const TObject *t1, const TObject *t2); |
199 | int luaO_str2d (const char *s, Number *result); | 199 | int luaO_str2d (const char *s, Number *result); |
200 | 200 | ||
201 | void luaO_verror (lua_State *L, const char *fmt, ...); | ||
202 | void luaO_chunkid (char *out, const char *source, int len); | ||
203 | |||
201 | 204 | ||
202 | #endif | 205 | #endif |