You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
|
|
|
|
int luaopen_lib2 (lua_State *L);
|
|
|
|
|
|
|
|
LUAMOD_API int luaopen_lib21 (lua_State *L) {
|
|
|
|
return luaopen_lib2(L);
|
|
|
|
}
|
|
|
|
|
|
|
|
|