Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / testsuite / include / check.h
blob70a71a1b95a9530e5e90b32b48b3fab3b3f36111
1 #include <stdio.h>
2 #include <stdlib.h>
4 #define CHECK(a) { \
5 if (!(a)) \
6 { \
7 printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
8 fflush(stdout); \
9 abort(); \
10 } \