Added manual and tests for version 5.4-w2

This commit is contained in:
Roberto Ierusalimschy
2018-07-09 12:33:01 -03:00
parent f59e6a93c0
commit 7c519dfbd0
37 changed files with 22260 additions and 0 deletions

10
testes/libs/lib11.c Normal file
View File

@@ -0,0 +1,10 @@
#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);
}