mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-12 18:05:57 +00:00
24 lines
508 B
C
24 lines
508 B
C
/****************************************************************
|
|
*
|
|
* assert.h - debugging facilities
|
|
*
|
|
* February 1989
|
|
* Mike Westerfield
|
|
*
|
|
* Copyright 1989,1990, 1996
|
|
* Byte Works, Inc.
|
|
*
|
|
****************************************************************/
|
|
|
|
#ifdef assert
|
|
#undef assert
|
|
#endif
|
|
|
|
extern void __assert(char *, int, char *);
|
|
|
|
#ifndef NDEBUG
|
|
#define assert(expression) (expression) ? ((void) 0) : (__assert(__FILE__, __LINE__, #expression))
|
|
#else
|
|
#define assert(expression) ((void) 0)
|
|
#endif
|