dos_compilers/Zortech C++ v206/INCLUDE/ASSERT.H
2024-07-02 07:30:38 -07:00

24 lines
405 B
C

/*_ assert.h Fri May 12 1989 Modified by: Walter Bright */
#if __cplusplus
extern "C" {
#endif
#undef assert
#ifdef NDEBUG
#define assert(ignore) ((void) 0)
#else
#define assert(e) ((void)((e) || _assert(#e,__FILE__,__LINE__)))
extern void
#ifndef __STDC__
cdecl
#endif
_assert(const char *,const char *,unsigned);
#endif
#if __cplusplus
}
#endif