diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-07-09 12:33:01 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-07-09 12:33:01 -0300 |
commit | 7c519dfbd0c68b952f0849e01deaa3750e1f8153 (patch) | |
tree | dde3ddbba310877db725df37a0d9f2cbe4e2a8f9 /testes/libs/lib11.c | |
parent | f59e6a93c0ad38a27a420e51abf8f13d962446b5 (diff) | |
download | lua-7c519dfbd0c68b952f0849e01deaa3750e1f8153.tar.gz lua-7c519dfbd0c68b952f0849e01deaa3750e1f8153.tar.bz2 lua-7c519dfbd0c68b952f0849e01deaa3750e1f8153.zip |
Added manual and tests for version 5.4-w2
Diffstat (limited to '')
-rw-r--r-- | testes/libs/lib11.c | 10 |
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 */ | ||
4 | int lib1_export (lua_State *L); | ||
5 | |||
6 | LUAMOD_API int luaopen_lib11 (lua_State *L) { | ||
7 | return lib1_export(L); | ||
8 | } | ||
9 | |||
10 | |||