aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-28 15:35:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-05-28 15:35:05 -0300
commit0733c83b8ce08234aa4b9b4889bae029dcfb8414 (patch)
tree5c909ec06993c42a64d31a35eeed3aea5b5a751d /lualib.h
parente9844a4f1d8a4cb9642c00db552a40f65f3748b8 (diff)
downloadlua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.tar.gz
lua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.tar.bz2
lua-0733c83b8ce08234aa4b9b4889bae029dcfb8414.zip
other modules may need FILEHANDLE definition
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