allwinner_a64/android/external/strace/tests/munlockall.c
2018-08-08 16:14:42 +08:00

13 lines
171 B
C

#include "tests.h"
#include <stdio.h>
#include <sys/mman.h>
int
main(void)
{
printf("munlockall() = %d\n", munlockall());
puts("+++ exited with 0 +++");
return 0;
}