zpool(8) uses tbl.
[netbsd-mini2440.git] / tools / compat / setgroupent.c
blob3f7b8847c26c869be079b9111f420f262a094ca9
1 /* $NetBSD: setgroupent.c,v 1.3 2002/02/26 22:29:39 tv 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