blob: 9ac69423f247b1b0cc494f141c32017455821502 [file] [log] [blame]
Fei Jie01d16cc2016-05-11 15:07:29 +08001#include "tests.h"
2
3#include <stdio.h>
4#include <sys/mman.h>
5
6int
7main(void)
8{
9 printf("munlockall() = %d\n", munlockall());
10
11 puts("+++ exited with 0 +++");
12 return 0;
13}