diff options
author | robert <robert@FreeBSD.org> | 2003-04-27 21:07:27 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2003-04-27 21:07:27 +0000 |
commit | 4c135fc4b7862993d7f4b980cd518c46d96f63c6 (patch) | |
tree | 9b06f2e4ae34328d623343e5f3eb91252a274d7f /lib | |
parent | 1e6c7486d5547de05170ebce4980eaa66d2f5607 (diff) | |
download | FreeBSD-src-4c135fc4b7862993d7f4b980cd518c46d96f63c6.zip FreeBSD-src-4c135fc4b7862993d7f4b980cd518c46d96f63c6.tar.gz |
Replace the return value of rfork_thread(3) in its manual page
function prototype with `pid_t' to match the declaration in
<unistd.h>.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/rfork_thread.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/gen/rfork_thread.3 b/lib/libc/gen/rfork_thread.3 index 56e01a0..e985e1c 100644 --- a/lib/libc/gen/rfork_thread.3 +++ b/lib/libc/gen/rfork_thread.3 @@ -35,7 +35,7 @@ .Lb libc .Sh SYNOPSIS .In unistd.h -.Ft int +.Ft pid_t .Fn rfork_thread "int flags" "void *stack" "int (*func)(void *arg)" "void *arg" .Sh DESCRIPTION The |