diff options
Diffstat (limited to 'src/assert')
-rw-r--r-- | src/assert/assert.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/assert/assert.h b/src/assert/assert.h index d49d9800..ef84e979 100644 --- a/src/assert/assert.h +++ b/src/assert/assert.h @@ -11,9 +11,6 @@ (__assert(#__exp, __FILE__, __LINE__, __func__), 0))) #endif -/* in c89 - void assert(int expression); */ -/* in c99 - void assert(/scalar/ expression); */ - /** insert program diagnostics **/ /*** @@ -29,6 +26,9 @@ If the macro IDENTIFIER(NDEBUG) is defined, THIS() is defined as DEFINITION(((void)0)). ***/ +/* in c89 - void assert(int expression); */ +/* in c99 - void assert(/scalar/ expression); */ + /* PROTOTYPE(void assert(int expression);) IMPLEMENTATION(The format of the diagnostic message, TODO: document this here) |