home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Programming
/
vbcc_MorphOS
/
machines
/
amiga68k
/
include
/
assert.h
next >
Wrap
C/C++ Source or Header
|
2000-08-20
|
281b
|
15 lines
#ifndef __ASSERT_H
#define __ASSERT_H 1
#endif
#undef assert
extern int __aprintf(const char *,...);
#ifndef NDEBUG
#define assert(exp) ((void)((exp)?0:(__aprintf("Assertion failed: file %s, line %d\n",__FILE__,__LINE__),abort(),0)))
#else
#define assert(exp) ((void)0)
#endif