diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-13 21:28:31 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-13 21:28:31 +0000 |
commit | bc82e6b05035b53b0120a9f7da4ad90db8ab03f0 (patch) | |
tree | 54fb7a92dcc3f5d672f2b47c91cc18243c9ff4e3 /gcc/sys-protos.h | |
parent | eac4d8fef80342e054bcd2fd64bf0a3e280abf1e (diff) | |
download | gcc-bc82e6b05035b53b0120a9f7da4ad90db8ab03f0.tar.gz |
* configure.in: Add AC_TYPE_GETGROUPS test.
* sys-protos.h: Use GETGROUPS_T * for second arg of getgroups.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34524 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..14033cb1484 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, GETGROUPS_T *); extern struct hostent * gethostbyaddr(/* ??? */); extern struct hostent * gethostbyname(/* ??? */); extern struct hostent * gethostent(/* ??? */); |