2017-10-21 23:40:19 +00:00
|
|
|
/****************************************************************
|
|
|
|
*
|
|
|
|
* assert.h - debugging facilities
|
|
|
|
*
|
|
|
|
* February 1989
|
|
|
|
* Mike Westerfield
|
|
|
|
*
|
|
|
|
* Copyright 1989,1990, 1996
|
|
|
|
* Byte Works, Inc.
|
|
|
|
*
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifdef assert
|
|
|
|
#undef assert
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
#define assert(expression) (expression) ? ((void) 0) : (__assert(__FILE__, __LINE__, #expression))
|
|
|
|
#else
|
|
|
|
#define assert(expression) ((void) 0)
|
|
|
|
#endif
|
2020-01-04 06:59:23 +00:00
|
|
|
|
|
|
|
#ifndef __assert__
|
|
|
|
#define __assert__
|
|
|
|
|
|
|
|
extern void __assert(char *, int, char *);
|
|
|
|
|
|
|
|
#define static_assert _Static_assert
|
|
|
|
|
|
|
|
#endif
|