aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test-mmap.c
blob: 1e0f94229eb119d6504a4a270ccc58956c287750 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <sys/mman.h>

int
main(int argc, char **argv)
{

	mmap(0, 0, PROT_READ, MAP_SHARED, -1, 0);
	return 0;
}