]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/assert.c
* Change the style of inclusion of the internal/ headers. Modern preprocessors
[pdclib] / functions / _PDCLIB / assert.c
index fbee63404eb97417ea59fcf0cb97cb6b34c04713..8f8791274451ffb28aefab3129ce781e7629bfe3 100644 (file)
 
 #ifndef REGTEST
 
-#ifndef _PDCLIB_AUX_H
-#define _PDCLIB_AUX_H _PDCLIB_AUX_H
 #include <_PDCLIB_aux.h>
-#endif
 
-#if _PDCLIB_C_VERSION == 99
-void _PDCLIB_assert( char const * const message1, char const * const function, char const * const message2 )
+void _PDCLIB_assert99( char const * const message1, char const * const function, char const * const message2 )
 {
     fputs( message1, stderr );
     fputs( function, stderr );
     fputs( message2, stderr );
     abort();
 }
-#else
-void _PDCLIB_assert( char const * const message )
+
+void _PDCLIB_assert89( char const * const message )
 {
     fputs( message, stderr );
     abort();
 }
-#endif
 
 #endif