2003-10-27 03:12:41 +03:00
|
|
|
/* $NetBSD: setgroupent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
|
2002-01-29 13:20:28 +03:00
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#include "nbtool_config.h"
|
2002-01-29 13:20:28 +03:00
|
|
|
|
2002-02-27 01:29:38 +03:00
|
|
|
#if !HAVE_SETGROUPENT || !HAVE_DECL_SETGROUPENT
|
2002-01-29 13:20:28 +03:00
|
|
|
#include <grp.h>
|
|
|
|
|
|
|
|
int setgroupent(int stayopen) {
|
|
|
|
setgrent();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|