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