kernel/arm: send SIGSEGV to processes
[minix3.git] / tools / compat / setpassent.c
blobd7c548354a33597054fb3a28ebdffa98f9597b4c
1 /* $NetBSD: setpassent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
3 #include "nbtool_config.h"
5 #if !HAVE_SETPASSENT || !HAVE_DECL_SETPASSENT
6 #include <pwd.h>
8 int setpassent(int stayopen) {
9 setpwent();
10 return 1;
12 #endif