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 6efe0e2d..24a3c7bf 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.30 2004/05/28 18:35:05 roberto Exp roberto $ 2** $Id: lualib.h,v 1.31 2004/07/09 14:29:29 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*/
@@ -22,9 +22,11 @@ LUALIB_API int luaopen_base (lua_State *L);
22LUALIB_API int luaopen_table (lua_State *L); 22LUALIB_API int luaopen_table (lua_State *L);
23 23
24#define LUA_IOLIBNAME "io" 24#define LUA_IOLIBNAME "io"
25#define LUA_OSLIBNAME "os"
26LUALIB_API int luaopen_io (lua_State *L); 25LUALIB_API int luaopen_io (lua_State *L);
27 26
27#define LUA_OSLIBNAME "os"
28LUALIB_API int luaopen_os (lua_State *L);
29
28#define LUA_STRLIBNAME "string" 30#define LUA_STRLIBNAME "string"
29LUALIB_API int luaopen_string (lua_State *L); 31LUALIB_API int luaopen_string (lua_State *L);
30 32