xref: /minix3/tools/compat/setpassent.c (revision c8a0e2f4c688362b79ef1474cea604c8ebd6045d)
1 /*	$NetBSD: setpassent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $	*/
2 
3 #include "nbtool_config.h"
4 
5 #if !HAVE_SETPASSENT || !HAVE_DECL_SETPASSENT
6 #include <pwd.h>
7 
setpassent(int stayopen)8 int setpassent(int stayopen) {
9 	setpwent();
10 	return 1;
11 }
12 #endif
13