• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "tests.h"
2 
3 #include <stdio.h>
4 #include <sys/mman.h>
5 
6 int
main(void)7 main(void)
8 {
9 	printf("munlockall() = %d\n", munlockall());
10 
11 	puts("+++ exited with 0 +++");
12 	return 0;
13 }
14