lib11.c 153 B

12345678910
  1. #include "lua.h"
  2. /* function from lib1.c */
  3. int lib1_export (lua_State *L);
  4. LUAMOD_API int luaopen_lib11 (lua_State *L) {
  5. return lib1_export(L);
  6. }