]> git.cameronkatri.com Git - mandoc.git/blob - test-mmap.c
Put mansearch.{h,c}, manpage.c, and compat_ohash.{h,c}
[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 }