config/dracut/90zfs: handle cases where hostid(1) returns all zeros
[zfs.git] / include / sys / lua / lualib.h
blob7b848787c8f098d660ee980549dc312f0004e007
1 /* BEGIN CSTYLED */
2 /*
3 ** $Id: lualib.h,v 1.43.1.1 2013/04/12 18:48:47 roberto Exp $
4 ** Lua standard libraries
5 ** See Copyright Notice in lua.h
6 */
9 #ifndef lualib_h
10 #define lualib_h
12 #include <sys/lua/lua.h>
16 LUAMOD_API int (luaopen_base) (lua_State *L);
18 #define LUA_COLIBNAME "coroutine"
19 LUAMOD_API int (luaopen_coroutine) (lua_State *L);
21 #define LUA_TABLIBNAME "table"
22 LUAMOD_API int (luaopen_table) (lua_State *L);
24 #define LUA_IOLIBNAME "io"
25 LUAMOD_API int (luaopen_io) (lua_State *L);
27 #define LUA_OSLIBNAME "os"
28 LUAMOD_API int (luaopen_os) (lua_State *L);
30 #define LUA_STRLIBNAME "string"
31 LUAMOD_API int (luaopen_string) (lua_State *L);
33 #define LUA_BITLIBNAME "bit32"
34 LUAMOD_API int (luaopen_bit32) (lua_State *L);
36 #define LUA_MATHLIBNAME "math"
37 LUAMOD_API int (luaopen_math) (lua_State *L);
39 #define LUA_DBLIBNAME "debug"
40 LUAMOD_API int (luaopen_debug) (lua_State *L);
42 #define LUA_LOADLIBNAME "package"
43 LUAMOD_API int (luaopen_package) (lua_State *L);
46 /* open all previous libraries */
47 LUALIB_API void (luaL_openlibs) (lua_State *L);
51 #if !defined(lua_assert)
52 #define lua_assert(x) ((void)0)
53 #endif
56 #endif
57 /* END CSTYLED */