| 12834 | |
| 12835 | |
| 12836 | static void *ll_load (lua_State *L, const char *path) { |
| 12837 | void *lib = dlopen(path, RTLD_NOW); |
| 12838 | if (lib == NULL) lua_pushstring(L, dlerror()); |
| 12839 | return lib; |
| 12840 | } |
| 12841 | |
| 12842 | |
| 12843 | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { |
no test coverage detected