diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 01:11:00 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-01-04 01:11:00 +0000 |
commit | dfda0cb34b738e8d555c93e3f4f316a2594a9d25 (patch) | |
tree | 4f295e79675d1c9d62354c0c23719c00b77183f1 /test-mmap.c | |
parent | c17325b87a0a99d79e776e4c805dc22ae21cef67 (diff) | |
download | mandoc-dfda0cb34b738e8d555c93e3f4f316a2594a9d25.tar.gz |
Clean up feature tests:
* Split the configure steering script out of the Makefile.
* Let the configure step depend on the test sources.
* Clean up the test programs such that they can be run.
Diffstat (limited to 'test-mmap.c')
-rw-r--r-- | test-mmap.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test-mmap.c b/test-mmap.c index 1e0f9422..7fb2f973 100644 --- a/test-mmap.c +++ b/test-mmap.c @@ -2,9 +2,7 @@ #include <sys/mman.h> int -main(int argc, char **argv) +main(void) { - - mmap(0, 0, PROT_READ, MAP_SHARED, -1, 0); - return 0; + return(MAP_FAILED != mmap(NULL, 1, PROT_READ, MAP_SHARED, -1, 0)); } |