Signed-off-by: hmz007 <hmz007@gmail.com> Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
14 lines
181 B
C
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;
|
|
}
|