mirror of
https://github.com/walterschell/Lua.git
synced 2024-11-10 01:01:46 +00:00
11 lines
153 B
C
11 lines
153 B
C
|
#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);
|
||
|
}
|
||
|
|
||
|
|