diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-06 17:09:38 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-03-06 17:09:38 -0300 |
commit | 6d4db86888ea8ef06b78646f2631891c9e4c7a2b (patch) | |
tree | 7a7b19dc6b3d786f4f974e702bf69eac9775b70f /lualib.h | |
parent | e9a38203700865d36c3b2861200674a21930c1b5 (diff) | |
download | lua-6d4db86888ea8ef06b78646f2631891c9e4c7a2b.tar.gz lua-6d4db86888ea8ef06b78646f2631891c9e4c7a2b.tar.bz2 lua-6d4db86888ea8ef06b78646f2631891c9e4c7a2b.zip |
open functions are lua_Cfunctions
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.18 2001/02/23 17:28:12 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.19 2001/02/23 20:31:37 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 | */ |
@@ -18,11 +18,11 @@ | |||
18 | 18 | ||
19 | #define LUA_ALERT l_s("_ALERT") | 19 | #define LUA_ALERT l_s("_ALERT") |
20 | 20 | ||
21 | LUALIB_API void lua_baselibopen (lua_State *L); | 21 | LUALIB_API int lua_baselibopen (lua_State *L); |
22 | LUALIB_API void lua_iolibopen (lua_State *L); | 22 | LUALIB_API int lua_iolibopen (lua_State *L); |
23 | LUALIB_API void lua_strlibopen (lua_State *L); | 23 | LUALIB_API int lua_strlibopen (lua_State *L); |
24 | LUALIB_API void lua_mathlibopen (lua_State *L); | 24 | LUALIB_API int lua_mathlibopen (lua_State *L); |
25 | LUALIB_API void lua_dblibopen (lua_State *L); | 25 | LUALIB_API int lua_dblibopen (lua_State *L); |
26 | 26 | ||
27 | 27 | ||
28 | 28 | ||