Use INTDEF for __getpgid.

This commit is contained in:
Ulrich Drepper 2002-04-14 08:42:53 +00:00
parent a02fe38fa8
commit 5fe32a10ce
3 changed files with 12 additions and 3 deletions

View File

@ -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 <unistd.h>
#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)

View File

@ -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 <unistd.h>
#include <sys/types.h>
#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)

View File

@ -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)