mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-21 03:48:08 -05:00
12 lines
273 B
C
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
|