diff options
author | pjd <pjd@FreeBSD.org> | 2010-01-20 22:26:36 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2010-01-20 22:26:36 +0000 |
commit | 9fe217e5416e97a68bca734f4b20dec337129de6 (patch) | |
tree | 5d54231f728ab6dc0554e62484f06b91659b010d /lib/libc/sys | |
parent | bc4e1f6f87a770761be30eb708cbef88bc4d9536 (diff) | |
download | FreeBSD-src-9fe217e5416e97a68bca734f4b20dec337129de6.zip FreeBSD-src-9fe217e5416e97a68bca734f4b20dec337129de6.tar.gz |
The waitpid(2) function needs neither sys/time.h nor sys/resource.h.
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/wait.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/wait.2 b/lib/libc/sys/wait.2 index c492cd6..2e084d2 100644 --- a/lib/libc/sys/wait.2 +++ b/lib/libc/sys/wait.2 @@ -44,10 +44,10 @@ .In sys/wait.h .Ft pid_t .Fn wait "int *status" -.In sys/time.h -.In sys/resource.h .Ft pid_t .Fn waitpid "pid_t wpid" "int *status" "int options" +.In sys/time.h +.In sys/resource.h .Ft pid_t .Fn wait3 "int *status" "int options" "struct rusage *rusage" .Ft pid_t |