1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

removed old prototype for 'luaI_openlib' (which does not exist anymore)

This commit is contained in:
Roberto Ierusalimschy
2010-01-11 14:00:45 -02:00
parent e74e56f2b1
commit 55d3138397
+1 -3
View File
@@ -1,5 +1,5 @@
/*
** $Id: lauxlib.h,v 1.97 2009/12/17 16:20:01 roberto Exp roberto $
** $Id: lauxlib.h,v 1.98 2010/01/06 15:14:15 roberto Exp roberto $
** Auxiliary functions for building Lua libraries
** See Copyright Notice in lua.h
*/
@@ -29,8 +29,6 @@ typedef struct luaL_Reg {
LUALIB_API void (luaL_checkversion_) (lua_State *L, lua_Number ver);
#define luaL_checkversion(L) luaL_checkversion_(L, LUA_VERSION_NUM)
LUALIB_API void (luaI_openlib) (lua_State *L, const char *libname,
const luaL_Reg *l, int nup);
LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
const luaL_Reg *l);
LUALIB_API int (luaL_getmetafield) (lua_State *L, int obj, const char *e);