Sign in
skia
/
external
/
github.com
/
lua
/
lua
/
refs/heads/master
/
.
/
testes
/
libs
/
lib11.c
blob: 6a85f4d62152d1d6473c829f6b63cc7b10419f85 [
file
] [
log
] [
blame
] [
edit
]
#include
"lua.h"
/* function from lib1.c */
LUAMOD_API
int
lib1_export
(
lua_State
*
L
);
LUAMOD_API
int
luaopen_lib11
(
lua_State
*
L
)
{
return
lib1_export
(
L
);
}