4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00
Jeff Johnston 9178da9597 2004-05-25 Jeff Johnston <jjohnstn@redhat.com>
* testsuite/include/check.h: Add include of <stdio.h>.
2004-05-25 20:52:21 +00:00

11 lines
189 B
C

#include <stdio.h>
#define CHECK(a) { \
if (!(a)) \
{ \
printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
fflush(stdout); \
abort(); \
} \
}