xref: /netbsd-src/tools/compat/setpassent.c (revision 0dd5877adce57db949b16ae963e5a6831cccdfb6)
1 /*	$NetBSD: setpassent.c,v 1.2 2002/01/31 19:23:14 tv Exp $	*/
2 
3 #include "config.h"
4 
5 #if !HAVE_SETPASSENT
6 #include <pwd.h>
7 
8 int setpassent(int stayopen) {
9 	setpwent();
10 	return 1;
11 }
12 #endif
13