diff --git a/examples/lua_dll.c b/examples/lua_dll.c deleted file mode 100644 index 64c3ef46a58093ca0b85b60ede4d8996ecf1560a..0000000000000000000000000000000000000000 --- a/examples/lua_dll.c +++ /dev/null @@ -1,17 +0,0 @@ -#include <stdio.h> -#include "lua_5.2.1.h" - -static int smile(lua_State *L) { - (void) L; // Unused - printf("%s\n", ":-)"); - return 0; -} - -int LUA_API luaopen_lua_dll(lua_State *L) { - static const struct luaL_Reg api[] = { - {"smile", smile}, - {NULL, NULL}, - }; - luaL_openlib(L, "lua_dll", api, 0); - return 1; -}