diff options
Diffstat (limited to 'ThirdParty/tolua_runtime/luasocket/compat.h')
-rw-r--r-- | ThirdParty/tolua_runtime/luasocket/compat.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ThirdParty/tolua_runtime/luasocket/compat.h b/ThirdParty/tolua_runtime/luasocket/compat.h new file mode 100644 index 0000000..7bf8010 --- /dev/null +++ b/ThirdParty/tolua_runtime/luasocket/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 |