Merge commit '7e3488dc6cdcb0c04e1ce167a1a3bfef83b5f2e0'
[unleashed.git] / kernel / fs / zfs / lua / lualib.h
blobda82005c9de25155e6b97b3c1dd779f3e7b0d9b7
1 /*
2 ** $Id: lualib.h,v 1.43.1.1 2013/04/12 18:48:47 roberto Exp $
3 ** Lua standard libraries
4 ** See Copyright Notice in lua.h
5 */
8 #ifndef lualib_h
9 #define lualib_h
11 #include "lua.h"
15 LUAMOD_API int (luaopen_base) (lua_State *L);
17 #define LUA_COLIBNAME "coroutine"
18 LUAMOD_API int (luaopen_coroutine) (lua_State *L);
20 #define LUA_TABLIBNAME "table"
21 LUAMOD_API int (luaopen_table) (lua_State *L);
23 #define LUA_IOLIBNAME "io"
24 LUAMOD_API int (luaopen_io) (lua_State *L);
26 #define LUA_OSLIBNAME "os"
27 LUAMOD_API int (luaopen_os) (lua_State *L);
29 #define LUA_STRLIBNAME "string"
30 LUAMOD_API int (luaopen_string) (lua_State *L);
32 #define LUA_BITLIBNAME "bit32"
33 LUAMOD_API int (luaopen_bit32) (lua_State *L);
35 #define LUA_MATHLIBNAME "math"
36 LUAMOD_API int (luaopen_math) (lua_State *L);
38 #define LUA_DBLIBNAME "debug"
39 LUAMOD_API int (luaopen_debug) (lua_State *L);
41 #define LUA_LOADLIBNAME "package"
42 LUAMOD_API int (luaopen_package) (lua_State *L);
45 /* open all previous libraries */
46 LUALIB_API void (luaL_openlibs) (lua_State *L);
50 #if !defined(lua_assert)
51 #define lua_assert(x) ((void)0)
52 #endif
55 #endif