add macro definition of assert using polarssl_exit

This commit is contained in:
Rich Evans 2015-02-02 12:04:10 +00:00
parent 77d3638497
commit 4c09114c32

View File

@ -15,10 +15,16 @@ typedef UINT32 uint32_t;
#include <inttypes.h>
#endif
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#define assert(a) if( !( a ) ) \
{ \
polarssl_fprintf( stderr, "Assertion Failed at %s:%d - %s\n", \
__FILE__, __LINE__, #a ); \
polarssl_exit( 1 ); \
}
/*
* 32-bit integer manipulation macros (big endian)
*/