1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* automatically generated by bootstrap.tl */
extern int luaopen_des56(lua_State* L);
extern int luaopen_md5_core(lua_State* L);
extern int luaopen_zlib(lua_State* L);
extern int luaopen_bz2(lua_State* L);
extern int luaopen_lfs(lua_State* L);
extern int luaopen_mime_core(lua_State* L);
extern int luaopen_socket_core(lua_State* L);
extern int luaopen_socket_serial(lua_State* L);
extern int luaopen_socket_unix(lua_State* L);
extern int luaopen_ssl_core(lua_State* L);
extern int luaopen_ssl_context(lua_State* L);
extern int luaopen_ssl_x509(lua_State* L);
extern int luaopen_ssl_config(lua_State* L);
extern int luaopen_miniposix(lua_State* L);
static void declare_libraries(lua_State* L) {
lua_getglobal(L, "package"); /* package */
lua_getfield(L, -1, "preload"); /* package package.preload */
lua_pushcfunction(L, luaopen_des56);
lua_setfield(L, -2, "des56");
lua_pushcfunction(L, luaopen_md5_core);
lua_setfield(L, -2, "md5.core");
lua_pushcfunction(L, luaopen_zlib);
lua_setfield(L, -2, "zlib");
lua_pushcfunction(L, luaopen_bz2);
lua_setfield(L, -2, "bz2");
lua_pushcfunction(L, luaopen_lfs);
lua_setfield(L, -2, "lfs");
lua_pushcfunction(L, luaopen_mime_core);
lua_setfield(L, -2, "mime.core");
lua_pushcfunction(L, luaopen_socket_core);
lua_setfield(L, -2, "socket.core");
lua_pushcfunction(L, luaopen_socket_serial);
lua_setfield(L, -2, "socket.serial");
lua_pushcfunction(L, luaopen_socket_unix);
lua_setfield(L, -2, "socket.unix");
lua_pushcfunction(L, luaopen_ssl_core);
lua_setfield(L, -2, "ssl.core");
lua_pushcfunction(L, luaopen_ssl_context);
lua_setfield(L, -2, "ssl.context");
lua_pushcfunction(L, luaopen_ssl_x509);
lua_setfield(L, -2, "ssl.x509");
lua_pushcfunction(L, luaopen_ssl_config);
lua_setfield(L, -2, "ssl.config");
lua_pushcfunction(L, luaopen_miniposix);
lua_setfield(L, -2, "miniposix");
lua_settop(L, 0); /* */
}
|