aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lualib.h b/lualib.h
index 178083c5..5c5d0a9c 100644
--- a/lualib.h
+++ b/lualib.h
@@ -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"
19LUAMOD_API int (luaopen_base) (lua_State *L); 18LUAMOD_API int (luaopen_base) (lua_State *L);
20 19
20#define LUA_COLIBNAME "coroutine"
21LUAMOD_API int (luaopen_coroutine) (lua_State *L);
22
21#define LUA_TABLIBNAME "table" 23#define LUA_TABLIBNAME "table"
22LUAMOD_API int (luaopen_table) (lua_State *L); 24LUAMOD_API int (luaopen_table) (lua_State *L);
23 25