From 6d55934c65607a0db77403b6b364af25e7ae1a70 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sat, 4 Jan 2014 01:11:00 +0000 Subject: 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. --- test-mmap.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'test-mmap.c') 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 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)); } -- cgit v1.2.3-56-ge451