diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-01-11 14:00:45 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-01-11 14:00:45 -0200 |
commit | 55d31383972aa29fff438973f91f88f372509281 (patch) | |
tree | a5839c65d9a9e75e9283690849e75205b301dd3a /lauxlib.h | |
parent | e74e56f2b1ffe12b039aaf0b2415d5011957e740 (diff) | |
download | lua-55d31383972aa29fff438973f91f88f372509281.tar.gz lua-55d31383972aa29fff438973f91f88f372509281.tar.bz2 lua-55d31383972aa29fff438973f91f88f372509281.zip |
removed old prototype for 'luaI_openlib' (which does not exist anymore)
Diffstat (limited to 'lauxlib.h')
-rw-r--r-- | lauxlib.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.h,v 1.97 2009/12/17 16:20:01 roberto Exp roberto $ | 2 | ** $Id: lauxlib.h,v 1.98 2010/01/06 15:14:15 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -29,8 +29,6 @@ typedef struct luaL_Reg { | |||
29 | LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver); | 29 | LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver); |
30 | #define luaL_checkversion(L) luaL_checkversion_(L, LUA_VERSION_NUM) | 30 | #define luaL_checkversion(L) luaL_checkversion_(L, LUA_VERSION_NUM) |
31 | 31 | ||
32 | LUALIB_API void (luaI_openlib) (lua_State *L, const char *libname, | ||
33 | const luaL_Reg *l, int nup); | ||
34 | LUALIB_API void (luaL_register) (lua_State *L, const char *libname, | 32 | LUALIB_API void (luaL_register) (lua_State *L, const char *libname, |
35 | const luaL_Reg *l); | 33 | const luaL_Reg *l); |
36 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); | 34 | LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e); |