repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
testsuite
/
include
/
check.h
blob
70a71a1b95a9530e5e90b32b48b3fab3b3f36111
1
#include <stdio.h>
2
#include <stdlib.h>
3
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
} \
11
}