aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index 5f072c6f..06428d77 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.28 2003/03/18 12:24:26 roberto Exp roberto $ 2** $Id: lualib.h,v 1.29 2004/03/24 15:46:49 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*/
@@ -16,6 +16,10 @@
16#endif 16#endif
17 17
18 18
19/* Key to file-handle type */
20#define LUA_FILEHANDLE "FILE*"
21
22
19#define LUA_COLIBNAME "coroutine" 23#define LUA_COLIBNAME "coroutine"
20LUALIB_API int luaopen_base (lua_State *L); 24LUALIB_API int luaopen_base (lua_State *L);
21 25