From: Ben Gras Date: Wed, 16 Feb 2011 19:04:29 +0000 (+0000) Subject: cleantmp.c - protect against double definition of NDEBUG X-Git-Tag: v3.2.0~665 X-Git-Url: http://zhaoyanbai.com/repos/named-checkzone.html?a=commitdiff_plain;h=d6e6ee304372c2c0a652ab217bb78393f850deac;p=minix.git cleantmp.c - protect against double definition of NDEBUG --- diff --git a/commands/cleantmp/cleantmp.c b/commands/cleantmp/cleantmp.c index 3c4d5a9c6..a6018fde6 100644 --- a/commands/cleantmp/cleantmp.c +++ b/commands/cleantmp/cleantmp.c @@ -22,8 +22,10 @@ #endif #ifndef DEBUG +#ifndef NDEBUG #define NDEBUG #endif +#endif #include #define SEC_DAY (24 * 3600L) /* A full day in seconds */