blob: 3a9809fb4a45d89d2d58d8cd2cf63be06bdba548 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/***
*assert.h - define the assert macro
*
* Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Defines the assert(exp) macro.
* [ANSI/System V]
*
*******************************************************************************/
#ifndef _ASSERT_DEFINED
#ifndef NDEBUG
static char _assertstring[] = "Assertion failed: %s, file %s, line %d\n";
#define assert(exp) { \
if (!(exp)) { \
fprintf(stderr, _assertstring, #exp, __FILE__, __LINE__); \
fflush(stderr); \
abort(); \
} \
}
#else
#define assert(exp)
#endif /* NDEBUG */
#define _ASSERT_DEFINED
#endif /* _ASSERT_DEFINED */
|