home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Destruction
/
Total_Destruction.iso
/
addons
/
Lccwin32.exe
/
Lccwin32
/
lccpub
/
include
/
ASSERT.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-05-08
|
348 b
|
15 lines
/*
assert.h
*/
#ifdef NDEBUG /* required by ANSI standard */
#define assert(p) ((void)0)
#else
#define assert(p) ((p) ? (void)0 : (void) _assertfail( \
"Assertion failed: ", \
"p", __FILE__, __LINE__ ) )
int _assertfail(char *__msg, char *__cond, char *__file, int __line);
#endif /* NDEBUG */