12.2.2.2.1.3. LIB11

12.2.2.2.1.3.1. lib11.c

#include "lua.h"

/* function from lib1.c */
int lib1_export (lua_State *L);

LUAMOD_API int luaopen_lib11 (lua_State *L) {
  return lib1_export(L);
}