1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | #ifdef _ASSERT_H |
23 | |
24 | # undef _ASSERT_H |
25 | # undef assert |
26 | # undef __ASSERT_VOID_CAST |
27 | |
28 | # ifdef __USE_GNU |
29 | # undef assert_perror |
30 | # endif |
31 | |
32 | #endif |
33 | |
34 | #define _ASSERT_H 1 |
35 | #include <features.h> |
36 | |
37 | #if defined __cplusplus && __GNUC_PREREQ (2,95) |
38 | # define __ASSERT_VOID_CAST static_cast<void> |
39 | #else |
40 | # define __ASSERT_VOID_CAST (void) |
41 | #endif |
42 | |
43 | |
44 | |
45 | |
46 | |
47 | |
48 | #ifdef NDEBUG |
49 | |
50 | # define assert(expr) (__ASSERT_VOID_CAST (0)) |
51 | |
52 | |
53 | |
54 | |
55 | |
56 | |
57 | |
58 | # ifdef __USE_GNU |
59 | # define assert_perror(errnum) (__ASSERT_VOID_CAST (0)) |
60 | # endif |
61 | |
62 | #else |
63 | |
64 | #ifndef _ASSERT_H_DECLS |
65 | #define _ASSERT_H_DECLS |
66 | __BEGIN_DECLS |
67 | |
68 | |
69 | extern void __assert_fail (const char *__assertion, const char *__file, |
70 | unsigned int __line, const char *__function) |
71 | __THROW __attribute__ ((__noreturn__)); |
72 | |
73 | |
74 | extern void __assert_perror_fail (int __errnum, const char *__file, |
75 | unsigned int __line, const char *__function) |
76 | __THROW __attribute__ ((__noreturn__)); |
77 | |
78 | |
79 | |
80 | |
81 | extern void __assert (const char *__assertion, const char *__file, int __line) |
82 | __THROW __attribute__ ((__noreturn__)); |
83 | |
84 | |
85 | __END_DECLS |
86 | #endif |
87 | |
88 | # define assert(expr) \ |
89 | ((expr) \ |
90 | ? __ASSERT_VOID_CAST (0) \ |
91 | : __assert_fail (#expr, __FILE__, __LINE__, __ASSERT_FUNCTION)) |
92 | |
93 | # ifdef __USE_GNU |
94 | # define assert_perror(errnum) \ |
95 | (!(errnum) \ |
96 | ? __ASSERT_VOID_CAST (0) \ |
97 | : __assert_perror_fail ((errnum), __FILE__, __LINE__, __ASSERT_FUNCTION)) |
98 | # endif |
99 | |
100 | |
101 | |
102 | |
103 | |
104 | |
105 | # if defined __cplusplus ? __GNUC_PREREQ (2, 6) : __GNUC_PREREQ (2, 4) |
106 | # define __ASSERT_FUNCTION __PRETTY_FUNCTION__ |
107 | # else |
108 | # if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L |
109 | # define __ASSERT_FUNCTION __func__ |
110 | # else |
111 | # define __ASSERT_FUNCTION ((const char *) 0) |
112 | # endif |
113 | # endif |
114 | |
115 | #endif |
116 | |
117 | |
118 | #if defined __USE_ISOC11 && !defined __cplusplus |
119 | # undef static_assert |
120 | # define static_assert _Static_assert |
121 | #endif |
122 | |