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 /ltests.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 'ltests.h')
-rw-r--r-- | ltests.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.h,v 2.15 2005/06/06 13:30:25 roberto Exp roberto $ | 2 | ** $Id: ltests.h,v 2.16 2005/09/14 17:48:57 roberto Exp roberto $ |
3 | ** Internal Header for Debugging of the Lua Implementation | 3 | ** Internal Header for Debugging of the Lua Implementation |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -15,7 +15,6 @@ | |||
15 | 15 | ||
16 | #undef NDEBUG | 16 | #undef NDEBUG |
17 | #include <assert.h> | 17 | #include <assert.h> |
18 | #undef lua_assert | ||
19 | #define lua_assert(c) assert(c) | 18 | #define lua_assert(c) assert(c) |
20 | 19 | ||
21 | 20 | ||