summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2003-03-16 00:17:08 +0000
committerPeter Johnson <peter@tortall.net>2003-03-16 00:17:08 +0000
commitaf39a1017cdf470aae545d5d3d76144553c4d613 (patch)
tree0eae7c2e7e47b68c34d023592f84922b9bc3e5fe /util.h
parentb4e4d080e53d0c4bb4d160556319f86fa4684760 (diff)
downloadyasm-af39a1017cdf470aae545d5d3d76144553c4d613.tar.gz
Don't redefine NDEBUG if it's already defined.
svn path=/trunk/yasm/; revision=862
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.h b/util.h
index ccdbfe32..9cf5a0bc 100644
--- a/util.h
+++ b/util.h
@@ -45,7 +45,7 @@
# include "libyasm/config.h"
#endif
-#if !defined(lint)
+#if !defined(lint) && !defined(NDEBUG)
# define NDEBUG
#endif