Files
CoolProp/wrappers/Lua/coolprop/compat.h

12 lines
273 B
C

#if !defined(__STDC_VERSION__) || !(__STDC_VERSION__ >= 199901L)
# error C99 compiler required.
#endif
#ifndef LUA_VERSION_NUM
# error Lua >= 5.1 is required.
#endif
#if LUA_VERSION_NUM < 502
# define luaL_newlib(L, l) (lua_newtable(L), luaL_register(L, NULL, l))
#endif