1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-19 10:53:58 +00:00
freebsd/test-mmap.c
2014-11-22 18:08:25 +00:00

10 lines
153 B
C

#include <sys/types.h>
#include <sys/mman.h>
#include <stddef.h>
int
main(void)
{
return(MAP_FAILED != mmap(NULL, 1, PROT_READ, MAP_SHARED, -1, 0));
}