summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-03-25 21:33:18 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-03-25 21:33:18 +0000
commit8f607e5eeec92167b168cdb23f4e1c8114821d68 (patch)
tree5ff563f40abf4bd1d10fc0bceb4dae60aaf16043
parenta6e41bdf2a251ca990386894e70eed0ef7126d43 (diff)
initgroups(3) 2nd argument should be gid_t
-rw-r--r--include/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/unistd.h b/include/unistd.h
index 637b6c3a3e4..ae4f7aa967b 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -126,7 +126,7 @@ int getpagesize __P((void));
char *getpass __P((const char *));
char *getusershell __P((void));
char *getwd __P((char *)); /* obsoleted by getcwd() */
-int initgroups __P((const char *, int));
+int initgroups __P((const char *, gid_t));
int iruserok __P((u_long, int, const char *, const char *));
int mknod __P((const char *, mode_t, dev_t));
int mkstemp __P((char *));