From bd262d591f56a4c14be58c14c54aa929d0d3bf64 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 10 Jun 2010 18:30:26 -0300 Subject: 'coroutine' library separated from 'baselib' --- lualib.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 178083c5..5c5d0a9c 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.38 2009/07/01 16:16:40 roberto Exp roberto $ +** $Id: lualib.h,v 1.39 2009/11/24 12:05:44 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -15,9 +15,11 @@ #define LUA_FILEHANDLE "FILE*" -#define LUA_COLIBNAME "coroutine" LUAMOD_API int (luaopen_base) (lua_State *L); +#define LUA_COLIBNAME "coroutine" +LUAMOD_API int (luaopen_coroutine) (lua_State *L); + #define LUA_TABLIBNAME "table" LUAMOD_API int (luaopen_table) (lua_State *L); -- cgit v1.2.3-55-g6feb