summaryrefslogtreecommitdiff
path: root/src/sys/mman/mmap.c
blob: 412c67db1dbf298deddc64d3d41a2ae0b85ffe62 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <sys/mman.h>

void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off)
{
	return addr;
}

/*
XOPEN(400)
POSIX(199309)
*/