aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/sysv4/getpgid.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/sysv4/getpgid.c')
-rw-r--r--sysdeps/unix/sysv/sysv4/getpgid.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/sysv4/getpgid.c b/sysdeps/unix/sysv/sysv4/getpgid.c
index 0d4e4caa73..5ec9e2c1c2 100644
--- a/sysdeps/unix/sysv/sysv4/getpgid.c
+++ b/sysdeps/unix/sysv/sysv4/getpgid.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1995, 1997, 1999 Free Software Foundation, Inc.
+/* Copyright (C) 1993, 1995, 1997, 1999, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -19,6 +19,8 @@
#include <unistd.h>
#include <sys/types.h>
+#undef __getpgid
+
extern pid_t __pgrpsys __P ((int type, ...));
/* Get the process group ID of process PID. */
@@ -29,4 +31,5 @@ __getpgid (pid)
return __pgrpsys (4, pid);
}
+INTDEF(__getpgid)
weak_alias (__getpgid, getpgid)