From 402b97fbdf4857adc5aa80f85fa5e59148e126b7 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 19 Sep 2024 00:43:31 +0200 Subject: Added debuggers to Nix shell --- zig-lua/lua-5.4.7/testes/libs/lib11.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 zig-lua/lua-5.4.7/testes/libs/lib11.c (limited to 'zig-lua/lua-5.4.7/testes/libs/lib11.c') diff --git a/zig-lua/lua-5.4.7/testes/libs/lib11.c b/zig-lua/lua-5.4.7/testes/libs/lib11.c new file mode 100644 index 0000000..377d0c4 --- /dev/null +++ b/zig-lua/lua-5.4.7/testes/libs/lib11.c @@ -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); +} + + -- cgit v1.2.3