repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
kernel/arm: send SIGSEGV to processes
[minix3.git]
/
tools
/
compat
/
setpassent.c
blob
d7c548354a33597054fb3a28ebdffa98f9597b4c
1
/* $NetBSD: setpassent.c,v 1.4 2003/10/27 00:12:43 lukem Exp $ */
2
3
#include
"nbtool_config.h"
4
5
#if !HAVE_SETPASSENT || !HAVE_DECL_SETPASSENT
6
#include <pwd.h>
7
8
int
setpassent
(
int
stayopen
) {
9
setpwent
();
10
return
1
;
11
}
12
#endif