2003-10-27 03:12:41 +03:00
|
|
|
/* $NetBSD: setpassent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
|
2002-01-29 13:20:28 +03:00
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#include "nbtool_config.h"
|
2002-01-29 13:20:28 +03:00
|
|
|
|
2002-02-27 01:29:38 +03:00
|
|
|
#if !HAVE_SETPASSENT || !HAVE_DECL_SETPASSENT
|
2002-01-29 13:20:28 +03:00
|
|
|
#include <pwd.h>
|
|
|
|
|
|
|
|
int setpassent(int stayopen) {
|
|
|
|
setpwent();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
#endif
|