1
0
Fork 0
mirror of https://github.com/jugeeya/UltimateTrainingModpack.git synced 2024-12-11 10:59:50 +00:00
UltimateTrainingModpack/source/lua/testes/libs/lib11.c

11 lines
153 B
C
Raw Normal View History

#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);
}