summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luasocket/src/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luasocket/src/compat.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luasocket/src/compat.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luasocket/src/compat.h b/Build/source/texk/web2c/luatexdir/luasocket/src/compat.h
new file mode 100644
index 00000000000..a4d5f36a660
--- /dev/null
+++ b/Build/source/texk/web2c/luatexdir/luasocket/src/compat.h
@@ -0,0 +1,11 @@
+#ifndef COMPAT_H
+#define COMPAT_H
+
+#include "lua.h"
+#include "lauxlib.h"
+
+#if LUA_VERSION_NUM<501
+void luaL_setfuncs (lua_State *L, const luaL_Reg *l, int nup);
+#endif
+
+#endif