]> git.cameronkatri.com Git - mandoc.git/blob - test-mmap.c
let the build system cope with the recent ohash changes
[mandoc.git] / test-mmap.c
1 #include <sys/types.h>
2 #include <sys/mman.h>
3
4 int
5 main(void)
6 {
7 return(MAP_FAILED != mmap(NULL, 1, PROT_READ, MAP_SHARED, -1, 0));
8 }