1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Correct the return value of vfork(2) and rfork(2) in their

manual page function prototypes.
This commit is contained in:
Robert Drehmel 2003-04-27 21:01:34 +00:00
parent edae7ea680
commit d1c2c89dd2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114131
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@
.Lb libc
.Sh SYNOPSIS
.In unistd.h
.Ft int
.Ft pid_t
.Fn rfork "int flags"
.Sh DESCRIPTION
Forking, vforking or rforking are the only ways new processes are created.

View File

@ -42,7 +42,7 @@
.Lb libc
.Sh SYNOPSIS
.In unistd.h
.Ft int
.Ft pid_t
.Fn vfork void
.Sh DESCRIPTION
The