blob: 377d0c484fdb0426b08e23238c32f692f79286a3 [file] [log] [blame]
#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);
}