summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/vax/mmap.c
blob: 41bfb79f10b3cf76b1b3675175355ba09366c9e6 (plain)
1
2
3
4
5
6
7
8
9
10
11

#include <unistd.h>
#include <sys/mman.h>
#include <errno.h>
#include <sys/syscall.h>

libc_hidden_proto(mmap)
_syscall6 (void *, mmap, void *, start, size_t, length, int, prot, int, flags,
		int, fd, off_t, offset);
libc_hidden_def(mmap)