Files
Android11/external/strace/tests/munlockall.c
2023-10-13 14:01:41 +00:00

14 lines
181 B
C

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