2002-02-27 01:29:38 +03:00
|
|
|
/* $NetBSD: setgroupent.c,v 1.3 2002/02/26 22:29:39 tv Exp $ */
|
2002-01-29 13:20:28 +03:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
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
|