summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/getpgrp.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/getpgrp.c')
-rw-r--r--libc/sysdeps/linux/common/getpgrp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/getpgrp.c b/libc/sysdeps/linux/common/getpgrp.c
index 0af9dc499..14912c376 100644
--- a/libc/sysdeps/linux/common/getpgrp.c
+++ b/libc/sysdeps/linux/common/getpgrp.c
@@ -13,10 +13,9 @@
#ifdef __NR_getpgrp
/* According to the manpage the POSIX.1 version is favoured */
_syscall_noerr0(pid_t, getpgrp)
-#elif defined __NR_getpgid && (defined __NR_getpid || defined __NR_getxpid)
-/* IA64 doesn't have a getpgrp syscall */
+#elif defined __NR_getpgid
pid_t getpgrp(void)
{
- return getpgid(getpid());
+ return getpgid(0);
}
#endif