mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-19 10:53:58 +00:00
10 lines
153 B
C
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));
|
|
}
|