From 411195e89109d7b1c0a0d552d1644837be781eeb Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Tue, 25 Jan 2000 05:52:31 +0000 Subject: [PATCH] Put in prototype for initgroups() to get rid of "default prototype" warning. On AIX 4.1, at least, the function exists in libc.a but doesn't exist in any .h. --- uip/slocal.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uip/slocal.c b/uip/slocal.c index 03dea14..dce9663 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -38,6 +38,8 @@ #include +extern int initgroups(char*, int); /* def'd in libc.a but no .h on AIX 4.1 */ + #ifndef UTMP_FILE # ifdef _PATH_UTMP # define UTMP_FILE _PATH_UTMP -- 1.7.10.4