diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-10 15:06:58 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-10 15:06:58 -0300 |
commit | c7b4f447724a7bf64e9522aeaf461cab32a7d023 (patch) | |
tree | ac6db6a2465b865b20e279ab088f9961018fd1f8 /lualib.h | |
parent | 44b19075c0fa4310d312147ee1d74dc11ff36eba (diff) | |
download | lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.tar.gz lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.tar.bz2 lua-c7b4f447724a7bf64e9522aeaf461cab32a7d023.zip |
correct name to open package library
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.33 2005/01/10 16:31:30 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.34 2005/04/13 17:24:20 roberto Exp roberto $ |
3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -37,7 +37,7 @@ LUALIB_API int (luaopen_math) (lua_State *L); | |||
37 | LUALIB_API int (luaopen_debug) (lua_State *L); | 37 | LUALIB_API int (luaopen_debug) (lua_State *L); |
38 | 38 | ||
39 | #define LUA_LOADLIBNAME "package" | 39 | #define LUA_LOADLIBNAME "package" |
40 | LUALIB_API int (luaopen_loadlib) (lua_State *L); | 40 | LUALIB_API int (luaopen_package) (lua_State *L); |
41 | 41 | ||
42 | 42 | ||
43 | /* open all previous libraries */ | 43 | /* open all previous libraries */ |