summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys/getpid.2
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-02-27 21:54:48 +0000
committerderaadt <deraadt@openbsd.org>1999-02-27 21:54:48 +0000
commit960f8fbd44b728dd399b6f0cecfac7f0443ae77a (patch)
tree7c7161599c52771fdf4d5c9d491663056a570428 /lib/libc/sys/getpid.2
parentdo not divide by zero; helbig@Informatik.BA-Stuttgart.DE (diff)
downloadwireguard-openbsd-960f8fbd44b728dd399b6f0cecfac7f0443ae77a.tar.xz
wireguard-openbsd-960f8fbd44b728dd399b6f0cecfac7f0443ae77a.zip
make function names the correct case
Diffstat (limited to 'lib/libc/sys/getpid.2')
-rw-r--r--lib/libc/sys/getpid.28
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/sys/getpid.2 b/lib/libc/sys/getpid.2
index 24876a6f706..71fea284aa6 100644
--- a/lib/libc/sys/getpid.2
+++ b/lib/libc/sys/getpid.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getpid.2,v 1.3 1998/07/06 18:27:33 deraadt Exp $
+.\" $OpenBSD: getpid.2,v 1.4 1999/02/27 21:56:21 deraadt Exp $
.\" $NetBSD: getpid.2,v 1.5 1995/02/27 12:33:12 cgd Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
@@ -49,14 +49,14 @@
.Ft pid_t
.Fn getppid void
.Sh DESCRIPTION
-.Fn Getpid
+.Fn getpid
returns
the process ID of
the calling process.
The ID is guaranteed to be unique and is
useful for constructing temporary file names.
.Pp
-.Fn Getppid
+.Fn getppid
returns the process ID of the parent
of the calling process.
.Sh ERRORS
@@ -69,7 +69,7 @@ indicate an error.
.Sh SEE ALSO
.Xr gethostid 3
.Sh STANDARDS
-.Fn Getpid
+.Fn getpid
and
.Fn getppid
conform to