xref: /netbsd-src/tools/compat/setgroupent.c (revision 9fbd88883c38d0c0fbfcbe66d76fe6b0fab3f9de)
1 /*	$NetBSD: setgroupent.c,v 1.2 2002/01/31 19:23:14 tv Exp $	*/
2 
3 #include "config.h"
4 
5 #if !HAVE_SETGROUPENT
6 #include <grp.h>
7 
8 int setgroupent(int stayopen) {
9 	setgrent();
10 	return 1;
11 }
12 #endif
13