aboutsummaryrefslogtreecommitdiff
path: root/src/compat.h
blob: f523fd9b31400c0b28b0bc7a978d65cad3c49d60 (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