Home | History | Annotate | Line # | Download | only in compat
setpassent.c revision 1.1
      1 /*	$NetBSD: setpassent.c,v 1.1 2002/01/29 10:20:32 tv Exp $	*/
      2 
      3 #ifdef HAVE_CONFIG_H
      4 #include "config.h"
      5 #endif
      6 
      7 #if !HAVE_SETPASSENT
      8 #include <pwd.h>
      9 
     10 int setpassent(int stayopen) {
     11 	setpwent();
     12 	return 1;
     13 }
     14 #endif
     15