diff options
author | Kim Alvefur <zash@zash.se> | 2022-07-01 21:21:21 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-07-01 21:21:21 +0200 |
commit | dff4beae0278ae5b98c52b7e1162ceb318236256 (patch) | |
tree | 39114742a01c88d240aaefd0d9b484a1581ef459 /util-src/signal.c | |
parent | 2ec8fbe7e5f571727a14205a7389f6528112a133 (diff) | |
download | prosody-dff4beae0278ae5b98c52b7e1162ceb318236256.tar.gz prosody-dff4beae0278ae5b98c52b7e1162ceb318236256.zip |
util-src: Remove Lua 5.1 compat macros
Part of #1600
Diffstat (limited to 'util-src/signal.c')
-rw-r--r-- | util-src/signal.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/util-src/signal.c b/util-src/signal.c index 1a398fa0..b5ba16a9 100644 --- a/util-src/signal.c +++ b/util-src/signal.c @@ -36,9 +36,6 @@ #include "lua.h" #include "lauxlib.h" -#if (LUA_VERSION_NUM == 501) -#define luaL_setfuncs(L, R, N) luaL_register(L, NULL, R) -#endif #if (LUA_VERSION_NUM < 503) #define lua_isinteger(L, n) lua_isnumber(L, n) #endif @@ -381,9 +378,7 @@ static const struct luaL_Reg lsignal_lib[] = { }; int luaopen_util_signal(lua_State *L) { -#if (LUA_VERSION_NUM > 501) luaL_checkversion(L); -#endif int i = 0; /* add the library */ |