| 2333 | } |
| 2334 | |
| 2335 | void add_system_extra_libs(lua_State *L) |
| 2336 | { |
| 2337 | register_module(L, "os", luaopen_os); |
| 2338 | register_module(L, "io", luaopen_io); |
| 2339 | register_module(L, "net", luaopen_net); |
| 2340 | register_module(L, "http", luaopen_http); |
| 2341 | register_module(L, "jsonrpc", luaopen_jsonrpc); |
| 2342 | } |
| 2343 | |
| 2344 | void reset_lvm_instructions_executed_count(lua_State *L) |
| 2345 | { |
no test coverage detected