zpool(8) uses tbl.
[netbsd-mini2440.git] / tools / compat / setpassent.c
blobffa87eab1b66a3a2d278c36adf6d5de56f7abae3
1 /* $NetBSD: setpassent.c,v 1.3 2002/02/26 22:29:39 tv Exp $ */
3 #include "nbtool_config.h"
5 #if !HAVE_SETPASSENT || !HAVE_DECL_SETPASSENT
6 #include <pwd.h>
8 int setpassent(int stayopen) {
9 setpwent();
10 return 1;
12 #endif