From: ceriel Date: Fri, 21 Oct 1988 17:35:54 +0000 (+0000) Subject: moved comment X-Git-Tag: release-5-5~2776 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e71c873fc156c2ca47c8836a6ad900e8c41c6fd1;p=ack.git moved comment --- diff --git a/modules/src/assert/assert.h b/modules/src/assert/assert.h index bd03d737a..66e9709bb 100644 --- a/modules/src/assert/assert.h +++ b/modules/src/assert/assert.h @@ -6,10 +6,10 @@ /* A S S E R T I O N M A C R O D E F I N I T I O N */ #ifdef DEBUG -/* Note: this macro uses parameter substitution inside strings */ #ifdef __STDC__ #define assert(exp) (exp || _BadAssertion(__FILE__, __LINE__, #exp)) #else +/* Note: this macro uses parameter substitution inside strings */ #define assert(exp) (exp || _BadAssertion(__FILE__, __LINE__, "exp")) #endif #else