1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
Files
2018-07-09 12:33:01 -03:00

11 lines
129 B
C

#include "lua.h"
int luaopen_lib2 (lua_State *L);
LUAMOD_API int luaopen_lib21 (lua_State *L) {
return luaopen_lib2(L);
}