mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
8 lines
145 B
C
8 lines
145 B
C
|
#define CHECK(a) { \
|
||
|
if (!(a)) \
|
||
|
{ \
|
||
|
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
|
||
|
abort(); \
|
||
|
} \
|
||
|
}
|