aboutsummaryrefslogtreecommitdiff
path: root/tests-m32/munlockall.c
blob: 9ac69423f247b1b0cc494f141c32017455821502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "tests.h"

#include <stdio.h>
#include <sys/mman.h>

int
main(void)
{
	printf("munlockall() = %d\n", munlockall());

	puts("+++ exited with 0 +++");
	return 0;
}