e75444ccd1
Makes initialization code simpler everywhere.
12 lines
177 B
C
12 lines
177 B
C
#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
|