moved comment

This commit is contained in:
ceriel 1988-10-21 17:35:54 +00:00
parent 0d9daaa18d
commit e71c873fc1

View 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