diff options
Diffstat (limited to 'libc/sysdeps/linux/vax/mmap.c')
-rw-r--r-- | libc/sysdeps/linux/vax/mmap.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/vax/mmap.c b/libc/sysdeps/linux/vax/mmap.c new file mode 100644 index 000000000..41bfb79f1 --- /dev/null +++ b/libc/sysdeps/linux/vax/mmap.c @@ -0,0 +1,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) + |