summaryrefslogtreecommitdiff
path: root/src/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lualib.h')
-rw-r--r--src/lualib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lualib.h b/src/lualib.h
index a5dde236..e1face32 100644
--- a/src/lualib.h
+++ b/src/lualib.h
@@ -1,5 +1,5 @@
/*
-** $Id: lualib.h,v 1.33 2005/01/10 16:31:30 roberto Exp $
+** $Id: lualib.h,v 1.34 2005/04/13 17:24:20 roberto Exp $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -36,12 +36,12 @@ LUALIB_API int (luaopen_math) (lua_State *L);
#define LUA_DBLIBNAME "debug"
LUALIB_API int (luaopen_debug) (lua_State *L);
-
+#define LUA_LOADLIBNAME "package"
LUALIB_API int (luaopen_loadlib) (lua_State *L);
/* open all previous libraries */
-LUALIB_API int (luaopen_stdlibs) (lua_State *L);
+LUALIB_API void (luaL_openlibs) (lua_State *L);
#endif