blob: a4d5f36a660455dc66d33b05e3b3110a1ee8c882 (
plain)
1
2
3
4
5
6
7
8
9
10
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
|