diff options
-rw-r--r-- | llimits.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.78 2010/04/19 17:40:13 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.79 2010/04/29 17:31:31 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 | */ |
@@ -60,7 +60,7 @@ typedef LUAI_UACNUMBER l_uacNumber; | |||
60 | #if defined(lua_assert) | 60 | #if defined(lua_assert) |
61 | #define check_exp(c,e) (lua_assert(c), (e)) | 61 | #define check_exp(c,e) (lua_assert(c), (e)) |
62 | #else | 62 | #else |
63 | #define lua_assert(c) ((void)0) | 63 | #define lua_assert(c) /* empty */ |
64 | #define check_exp(c,e) (e) | 64 | #define check_exp(c,e) (e) |
65 | #endif | 65 | #endif |
66 | 66 | ||