From 87108d9ffaa3e4d4bc761453de093011e0d3398d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sun, 29 Oct 2000 05:47:04 +0000 Subject: Fix up stat so we translate from kernel stat to libc stat. Try to fix up a few little things with dir entry reading. busybox now compiles, and seems to basically work... :-) -Erik --- libc/sysdeps/linux/common/setpgrp.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'libc/sysdeps/linux/common/setpgrp.c') diff --git a/libc/sysdeps/linux/common/setpgrp.c b/libc/sysdeps/linux/common/setpgrp.c index f1f27d18f..0fa8fccc3 100644 --- a/libc/sysdeps/linux/common/setpgrp.c +++ b/libc/sysdeps/linux/common/setpgrp.c @@ -1,11 +1,7 @@ #include #include -static inline -_syscall2(int,setpgid,pid_t,pid,pid_t,pgid); - -int -setpgrp(void) +int setpgrp(void) { return setpgid(0,0); } -- cgit v1.2.3