moved comment
authorceriel <none@none>
Fri, 21 Oct 1988 17:35:54 +0000 (17:35 +0000)
committerceriel <none@none>
Fri, 21 Oct 1988 17:35:54 +0000 (17:35 +0000)
modules/src/assert/assert.h

index bd03d73..66e9709 100644 (file)
@@ -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