summaryrefslogtreecommitdiff
path: root/ltests.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-12-27 15:12:00 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2005-12-27 15:12:00 -0200
commit0fd64669579f33b03dcda6fac4be908b4cfd7e15 (patch)
tree0d5221b01266c46731ace42ea1db72460e3e28bd /ltests.h
parent6a516878e93fb46795aac95087aaf34b17cc4930 (diff)
downloadlua-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.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/ltests.h b/ltests.h
index 1d054bae..bedf8570 100644
--- a/ltests.h
+++ b/ltests.h
@@ -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