diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-06-10 18:30:26 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2010-06-10 18:30:26 -0300 |
commit | bd262d591f56a4c14be58c14c54aa929d0d3bf64 (patch) | |
tree | 753b3b57a04c2bdd2fcae53447e6b54bcb2ae23e /lualib.h | |
parent | 0d116c3adab7bf831ecb8adec0cedfe9a807476e (diff) | |
download | lua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.tar.gz lua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.tar.bz2 lua-bd262d591f56a4c14be58c14c54aa929d0d3bf64.zip |
'coroutine' library separated from 'baselib'
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.38 2009/07/01 16:16:40 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.39 2009/11/24 12:05:44 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 | */ |
@@ -15,9 +15,11 @@ | |||
15 | #define LUA_FILEHANDLE "FILE*" | 15 | #define LUA_FILEHANDLE "FILE*" |
16 | 16 | ||
17 | 17 | ||
18 | #define LUA_COLIBNAME "coroutine" | ||
19 | LUAMOD_API int (luaopen_base) (lua_State *L); | 18 | LUAMOD_API int (luaopen_base) (lua_State *L); |
20 | 19 | ||
20 | #define LUA_COLIBNAME "coroutine" | ||
21 | LUAMOD_API int (luaopen_coroutine) (lua_State *L); | ||
22 | |||
21 | #define LUA_TABLIBNAME "table" | 23 | #define LUA_TABLIBNAME "table" |
22 | LUAMOD_API int (luaopen_table) (lua_State *L); | 24 | LUAMOD_API int (luaopen_table) (lua_State *L); |
23 | 25 | ||