| 66 | |
| 67 | |
| 68 | static void *ll_load (lua_State *L, const char *path) { |
| 69 | void *lib = dlopen(path, RTLD_NOW); |
| 70 | if (lib == NULL) lua_pushstring(L, dlerror()); |
| 71 | return lib; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { |
no test coverage detected