mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-06 20:49:01 -04:00
13 lines
227 B
C
13 lines
227 B
C
/* $NetBSD: setgroupent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#if !HAVE_SETGROUPENT || !HAVE_DECL_SETGROUPENT
|
|
#include <grp.h>
|
|
|
|
int setgroupent(int stayopen) {
|
|
setgrent();
|
|
return 1;
|
|
}
|
|
#endif
|