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/common | |
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/common')
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 30426a419..f0e54b344 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -356,13 +356,8 @@ _syscall1(int, dup, int, oldfd); //#define __NR_pipe 42 #ifdef L_pipe #include <unistd.h> -/* - * SH has a weird register calling mechanism for pipe, see pipe.c - */ -#if !defined(__sh__) _syscall1(int, pipe, int *, filedes); #endif -#endif //#define __NR_times 43 #ifdef L_times |