33f5b60999
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27549 a1c6a512-1295-4272-9138-f99709370657
22 lines
428 B
C
22 lines
428 B
C
/*
|
|
assert.h
|
|
*/
|
|
|
|
#include "_ansi.h"
|
|
|
|
#undef assert
|
|
|
|
#ifdef NDEBUG /* required by ANSI standard */
|
|
#define assert(p) ((void)0)
|
|
#else
|
|
|
|
#ifdef __STDC__
|
|
#define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, #e))
|
|
#else /* PCC */
|
|
#define assert(e) ((e) ? (void)0 : __assert(__FILE__, __LINE__, "e"))
|
|
#endif
|
|
|
|
#endif /* NDEBUG */
|
|
|
|
void _EXFUN(__assert,(const char *, int, const char *));
|
|
|