| 12841 | |
| 12842 | |
| 12843 | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) { |
| 12844 | lua_CFunction f = (lua_CFunction)dlsym(lib, sym); |
| 12845 | if (f == NULL) lua_pushstring(L, dlerror()); |
| 12846 | return f; |
| 12847 | } |
| 12848 | |
| 12849 | /* }====================================================== */ |
| 12850 |
no test coverage detected