aboutsummaryrefslogtreecommitdiff
path: root/src/compat.h
blob: e2ab307c4baa955089d90718e54d26d3c2b4f3bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);
void *luaL_testudata ( lua_State *L, int arg, const char *tname);
#endif

#endif