xref: /netbsd-src/tools/compat/setgroupent.c (revision 171d653219884c65a42fe0711393bbe333dbd026)
1 /*	$NetBSD: setgroupent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $	*/
2 
3 #include "nbtool_config.h"
4 
5 #if !HAVE_SETGROUPENT || !HAVE_DECL_SETGROUPENT
6 #include <grp.h>
7 
setgroupent(int stayopen)8 int setgroupent(int stayopen) {
9 	setgrent();
10 	return 1;
11 }
12 #endif
13