From 5fe32a10cec103c4fab57bd5d561d9367fd92f81 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 14 Apr 2002 08:42:53 +0000 Subject: [PATCH] Use INTDEF for __getpgid. --- sysdeps/unix/sysv/aix/getpgid.c | 5 ++++- sysdeps/unix/sysv/sysv4/__getpgid.c | 5 ++++- sysdeps/unix/sysv/sysv4/getpgid.c | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/sysdeps/unix/sysv/aix/getpgid.c b/sysdeps/unix/sysv/aix/getpgid.c index 297fccc..889e3e1 100644 --- a/sysdeps/unix/sysv/aix/getpgid.c +++ b/sysdeps/unix/sysv/aix/getpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1999, 2000 Free Software Foundation, Inc. +/* Copyright (C) 1999, 2000, 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 @@ -18,6 +18,8 @@ #include +#undef __getpgid + extern int kgetpgidx (pid_t pid); int @@ -25,4 +27,5 @@ __getgpid (pid_t pid) { return kgetpgidx (pid); } +INTDEF(__getgpid) strong_alias (__getpgid, getpgid) diff --git a/sysdeps/unix/sysv/sysv4/__getpgid.c b/sysdeps/unix/sysv/sysv4/__getpgid.c index 4ee0e74..9313434 100644 --- a/sysdeps/unix/sysv/sysv4/__getpgid.c +++ b/sysdeps/unix/sysv/sysv4/__getpgid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Brendan Kehoe (brendan@zen.org). @@ -21,6 +21,8 @@ #include #include +#undef __getpgid + extern int __pgrpsys __P ((int type, ...)); /* Get the process group ID of process PID. */ @@ -30,3 +32,4 @@ __getpgid (pid) { return __pgrpsys (4, pid); } +INTDEF(__getpgid) diff --git a/sysdeps/unix/sysv/sysv4/getpgid.c b/sysdeps/unix/sysv/sysv4/getpgid.c index 0d4e4ca..5ec9e2c 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 #include +#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) -- 2.7.4