Add missing function types for getpwnam_r and getpwuid_r.
This commit is contained in:
parent
b5016b1bb3
commit
f74a3e4c4e
|
@ -1,4 +1,4 @@
|
|||
.\" $NetBSD: getpwent.3,v 1.24 2004/10/05 04:45:54 lukem Exp $
|
||||
.\" $NetBSD: getpwent.3,v 1.25 2004/10/05 13:52:09 wiz Exp $
|
||||
.\"
|
||||
.\" Copyright (c) 1988, 1991, 1993
|
||||
.\" The Regents of the University of California. All rights reserved.
|
||||
|
@ -50,6 +50,7 @@
|
|||
.Fn getpwent void
|
||||
.Ft struct passwd *
|
||||
.Fn getpwnam "const char *name"
|
||||
.Ft int
|
||||
.Fo getpwnam_r
|
||||
.Fa "const char *name"
|
||||
.Fa "struct passwd *pw"
|
||||
|
@ -59,6 +60,7 @@
|
|||
.Fc
|
||||
.Ft struct passwd *
|
||||
.Fn getpwuid "uid_t uid"
|
||||
.Ft int
|
||||
.Fo getpwuid_r
|
||||
.Fa "uid_t uid"
|
||||
.Fa "struct passwd *pw"
|
||||
|
@ -67,7 +69,7 @@
|
|||
.Fa "struct passwd **result"
|
||||
.Fc
|
||||
.Ft int
|
||||
.Fn setpassent "int stayopen"
|
||||
.Fn setpassent "int stayopen"
|
||||
.Ft void
|
||||
.Fn setpwent void
|
||||
.Ft void
|
||||
|
|
Loading…
Reference in New Issue