From fe35453a7a94f323d37b7bf2cfa7261be7e27c1c Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Thu, 24 Feb 1994 23:55:30 +0000 Subject: [PATCH] Formerly unix/sysv/irix4/__getgrps.c.~2~ --- sysdeps/unix/sysv/irix4/getgroups.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sysdeps/unix/sysv/irix4/getgroups.c b/sysdeps/unix/sysv/irix4/getgroups.c index 525ff0cc7e..b6f002ab2e 100644 --- a/sysdeps/unix/sysv/irix4/getgroups.c +++ b/sysdeps/unix/sysv/irix4/getgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992 Free Software Foundation, Inc. +/* Copyright (C) 1994 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 @@ -21,9 +21,11 @@ Cambridge, MA 02139, USA. */ #include #include +extern int __syssgi __P ((int, ...)); + /* Set the group set for the current user to GROUPS (N of them). */ int DEFUN(getgroups, (n, groups), size_t n AND gid_t *groups) { - return syssgi(SGI_GETGROUPS, n, groups); + return __syssgi (SGI_GETGROUPS, n, groups); }