diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-11-12 01:10:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-11-12 01:10:24 +0000 |
commit | 38545a368ca50c8c24e5adae349bcbcae2065132 (patch) | |
tree | 81eaac7b3d99330be800ab8ae97dee28f2c9b49b /libc/sysdeps/linux/hppa/mmap.c | |
parent | 63f4057c6726e42960439780675ad165cecc9f75 (diff) |
initial port to hppa
Diffstat (limited to 'libc/sysdeps/linux/hppa/mmap.c')
-rw-r--r-- | libc/sysdeps/linux/hppa/mmap.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/hppa/mmap.c b/libc/sysdeps/linux/hppa/mmap.c new file mode 100644 index 000000000..117d93ddc --- /dev/null +++ b/libc/sysdeps/linux/hppa/mmap.c @@ -0,0 +1,17 @@ +/* vi: set sw=4 ts=4: */ +/* + * mmap() for uClibc/x86_64 + * + * Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org> + * Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org> + * + * GNU Library General Public License (LGPL) version 2 or later. + */ + +#include <errno.h> +#include <unistd.h> +#include <sys/mman.h> +#include <sys/syscall.h> + +_syscall6(void *, mmap, void *, start, size_t, length, int, prot, + int, flags, int, fd, off_t, offset); |