h1-mod/deps/lua/testes/libs/lib21.c

11 lines
129 B
C
Raw Normal View History

2024-03-07 00:54:15 -05:00
#include "lua.h"
int luaopen_lib2 (lua_State *L);
LUAMOD_API int luaopen_lib21 (lua_State *L) {
return luaopen_lib2(L);
}