summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-02-26 02:13:56 +0000
committerEric Andersen <andersen@codepoet.org>2003-02-26 02:13:56 +0000
commit8b1cd1869a7a15a31153e579a1dde0b257d2f358 (patch)
tree7bea1aa4c9c438a23873934fa021c2c7f6336907 /test
parent00a25ecaa0ba75454263efc7a977cf7a7b227c58 (diff)
Prefer mmap2 for mips when available. Fix the mmap test.
-Erik
Diffstat (limited to 'test')
-rw-r--r--test/mmap/mmap.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/mmap/mmap.c b/test/mmap/mmap.c
index d8b9b0024..3649461ac 100644
--- a/test/mmap/mmap.c
+++ b/test/mmap/mmap.c
@@ -3,26 +3,25 @@
* (as mmap) are done differently on various architectures.
*/
+#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
#include <sys/mman.h>
-#include <stdlib.h>
-int main(int argc,char *argv)
+int main(int argc, char **argv)
{
void *ptr;
ptr = mmap(NULL, 4096, PROT_READ|PROT_WRITE,
- MAP_PRIVATE|MAP_ANONYMOUS,
- 0, 0);
+ MAP_PRIVATE|MAP_ANONYMOUS, 0, 0);
if(ptr==MAP_FAILED){
perror("mmap");
exit(1);
- }else{
- printf("mmap returned %p\n",ptr);
- exit(0);
}
+ printf("mmap returned %p\n",ptr);
+ exit(0);
}