OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [include/] [assert.h] - Rev 1765

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
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.