diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-02-22 00:10:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-02-22 00:10:00 +0000 |
commit | 5640182e962a3190dd28eff714cdda9de2d3f877 (patch) | |
tree | 5f1915b04035654ae053c3441180ee24c43a34e8 /libc/sysdeps/linux/mips/_mmap.c | |
parent | a8021309c2cb8c1e65ba2d624e3b8ed3995fc674 (diff) |
Several mips fixes from Geoffrey Espin. With these, busybox with
ash/vi/etc now works just fine with uClibc on mips.
Diffstat (limited to 'libc/sysdeps/linux/mips/_mmap.c')
-rw-r--r-- | libc/sysdeps/linux/mips/_mmap.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/mips/_mmap.c b/libc/sysdeps/linux/mips/_mmap.c new file mode 100644 index 000000000..43fb0be74 --- /dev/null +++ b/libc/sysdeps/linux/mips/_mmap.c @@ -0,0 +1,8 @@ +/* Use new style mmap for mips */ +#include <unistd.h> +#include <errno.h> +#include <sys/mman.h> +#include <sys/syscall.h> + +_syscall6 (__ptr_t, mmap, __ptr_t, addr, size_t, len, int, prot, + int, flags, int, fd, __off_t, offset); |