github.com/hirochachacha/plua@v0.0.0-20170217012138-c82f520cc725/testdata/lua-5.3.3-tests/libs/lib11.c (about) 1 #include "lua.h" 2 3 /* function from lib1.c */ 4 int lib1_export (lua_State *L); 5 6 LUAMOD_API int luaopen_lib11 (lua_State *L) { 7 return lib1_export(L); 8 } 9 10