xref: /csrg-svn/lib/libc/compat-43/setrgid.c (revision 42626)
122107Smckusick /*
222107Smckusick  * Copyright (c) 1983 Regents of the University of California.
335311Sbostic  * All rights reserved.
435311Sbostic  *
5*42626Sbostic  * %sccs.include.redist.c%
622107Smckusick  */
713507Ssam 
826587Sdonn #if defined(LIBC_SCCS) && !defined(lint)
9*42626Sbostic static char sccsid[] = "@(#)setrgid.c	5.4 (Berkeley) 06/01/90";
1035311Sbostic #endif /* LIBC_SCCS and not lint */
1122107Smckusick 
1213507Ssam setrgid(rgid)
1313507Ssam 	int rgid;
1413507Ssam {
1513507Ssam 
1613507Ssam 	return (setregid(rgid, -1));
1713507Ssam }
18