aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-10 14:30:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-09-10 14:30:46 -0300
commit226c57fec0cc2a1b9457ec4204f13c5b7a108cc7 (patch)
tree520797ca5f2070ff2c77a4e5756b63bb419dbd60 /llimits.h
parent0de2065f4e7cbbbe301b07835b9dd0b1bd1a4bbb (diff)
downloadlua-226c57fec0cc2a1b9457ec4204f13c5b7a108cc7.tar.gz
lua-226c57fec0cc2a1b9457ec4204f13c5b7a108cc7.tar.bz2
lua-226c57fec0cc2a1b9457ec4204f13c5b7a108cc7.zip
simpler configuration to turn on all asserts
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/llimits.h b/llimits.h
index 4aae7fc5..a07edf92 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.58 2004/04/30 20:13:38 roberto Exp roberto $ 2** $Id: llimits.h,v 1.59 2004/06/23 15:57:29 roberto Exp roberto $
3** Limits, basic types, and some other `installation-dependent' definitions 3** Limits, basic types, and some other `installation-dependent' definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -63,9 +63,7 @@ typedef LUSER_ALIGNMENT_T L_Umaxalign;
63typedef LUA_UACNUMBER l_uacNumber; 63typedef LUA_UACNUMBER l_uacNumber;
64 64
65 65
66#ifndef check_exp 66#define check_exp(c,e) (lua_assert(c), (e))
67#define check_exp(c,e) (e)
68#endif
69 67
70 68
71#ifndef UNUSED 69#ifndef UNUSED