mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-27 04:41:02 +08:00
Use INTDEF for __getpgid.
This commit is contained in:
parent
a02fe38fa8
commit
5fe32a10ce
@ -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)
|
||||
|
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user