Rename Lua test folder

This commit is contained in:
Justine Tunney 2021-03-07 18:22:53 -08:00
parent a8945714e8
commit 5f088cec23
40 changed files with 30 additions and 30 deletions

10
third_party/lua/test/libs/lib11.c vendored 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);
}