diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-12-27 15:12:00 -0200 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-12-27 15:12:00 -0200 |
| commit | 0fd64669579f33b03dcda6fac4be908b4cfd7e15 (patch) | |
| tree | 0d5221b01266c46731ace42ea1db72460e3e28bd /lualib.h | |
| parent | 6a516878e93fb46795aac95087aaf34b17cc4930 (diff) | |
| download | lua-0fd64669579f33b03dcda6fac4be908b4cfd7e15.tar.gz lua-0fd64669579f33b03dcda6fac4be908b4cfd7e15.tar.bz2 lua-0fd64669579f33b03dcda6fac4be908b4cfd7e15.zip | |
lua_assert is an internal matter, not to be configured
Diffstat (limited to '')
| -rw-r--r-- | lualib.h | 8 |
1 files changed, 7 insertions, 1 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: lualib.h,v 1.34 2005/04/13 17:24:20 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.35 2005/08/10 18:06:58 roberto Exp roberto $ |
| 3 | ** Lua standard libraries | 3 | ** Lua standard libraries |
| 4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
| 5 | */ | 5 | */ |
| @@ -44,4 +44,10 @@ LUALIB_API int (luaopen_package) (lua_State *L); | |||
| 44 | LUALIB_API void (luaL_openlibs) (lua_State *L); | 44 | LUALIB_API void (luaL_openlibs) (lua_State *L); |
| 45 | 45 | ||
| 46 | 46 | ||
| 47 | |||
| 48 | #ifndef lua_assert | ||
| 49 | #define lua_assert(x) ((void)0) | ||
| 50 | #endif | ||
| 51 | |||
| 52 | |||
| 47 | #endif | 53 | #endif |
