mirror of https://github.com/lua/lua.git
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.
10 lines
153 B
10 lines
153 B
#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);
|
|
}
|
|
|
|
|
|
|