1#include "lua.h" 2 3 4int luaopen_lib2 (lua_State *L); 5 6LUAMOD_API int luaopen_lib21 (lua_State *L) { 7 return luaopen_lib2(L); 8} 9 10