summaryrefslogtreecommitdiff
path: root/testes/libs/lib11.c
diff options
context:
space:
mode:
Diffstat (limited to 'testes/libs/lib11.c')
-rw-r--r--testes/libs/lib11.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/testes/libs/lib11.c b/testes/libs/lib11.c
new file mode 100644
index 00000000..377d0c48
--- /dev/null
+++ b/testes/libs/lib11.c
@@ -0,0 +1,10 @@
1#include "lua.h"
2
3/* function from lib1.c */
4int lib1_export (lua_State *L);
5
6LUAMOD_API int luaopen_lib11 (lua_State *L) {
7 return lib1_export(L);
8}
9
10