diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-17 09:23:16 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-17 09:23:16 +0000 |
commit | 2382c34146f4f2f0d491becf015bd3eaef1d5557 (patch) | |
tree | 33a0579f3bcf5453db31c5c65a0320a104fbbd28 /gcc/sys-protos.h | |
parent | 748242f27af76e5a41e95a45be1ae0954980aaf7 (diff) | |
download | gcc-2382c34146f4f2f0d491becf015bd3eaef1d5557.tar.gz |
* Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
* configure.in (TARGET_GETGROUPS_T): Evaluate.
* sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
of second argument of getgroups.
* configure, config.in: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35086 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sys-protos.h')
-rw-r--r-- | gcc/sys-protos.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sys-protos.h b/gcc/sys-protos.h index ab6e407e8f1..b676ea27f53 100644 --- a/gcc/sys-protos.h +++ b/gcc/sys-protos.h @@ -445,7 +445,7 @@ extern gid_t getgid(void); extern struct group * getgrent(void); extern struct group * getgrgid(gid_t); extern struct group * getgrnam(const char *); -extern int getgroups(int, gid_t *); +extern int getgroups(int, TARGET_GETGROUPS_T []); extern struct hostent * gethostbyaddr(/* ??? */); extern struct hostent * gethostbyname(/* ??? */); extern struct hostent * gethostent(/* ??? */); |