2002-02-27 01:29:38 +03:00
|
|
|
/* $NetBSD: setpassent.c,v 1.3 2002/02/26 22:29:39 tv Exp $ */
|
2002-01-29 13:20:28 +03:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
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
|