kernel/arm: send SIGSEGV to processes
[minix3.git] / tools / compat / setgroupent.c
blobdbbb2eff6035d13894cb21f31dd214d5acea1d13
1 /* $NetBSD: setgroupent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
3 #include "nbtool_config.h"
5 #if !HAVE_SETGROUPENT || !HAVE_DECL_SETGROUPENT
6 #include <grp.h>
8 int setgroupent(int stayopen) {
9 setgrent();
10 return 1;
12 #endif