URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libc/] [include/] [assert.h] - Rev 1771
Go to most recent revision | Compare with Previous | Blame | View Log
/* assert.h */ #ifdef __cplusplus extern "C" { #endif #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 *)); #ifdef __cplusplus } #endif
Go to most recent revision | Compare with Previous | Blame | View Log