summaryrefslogtreecommitdiff
path: root/src/sys/mman/mmap.c
blob: 9a7e46286e465c928fa8089ca2dddc156be556fa (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(19xxyy)
*/