diff options
author | Robert Drehmel <robert@FreeBSD.org> | 2002-10-02 10:53:44 +0000 |
---|---|---|
committer | Robert Drehmel <robert@FreeBSD.org> | 2002-10-02 10:53:44 +0000 |
commit | e31d11c36aec6b6f0280769d724c6680235e4367 (patch) | |
tree | e46b96148e29adb4f50d75525588c214bf815190 /lib/libc_r/man | |
parent | 54beeb39c221913fd041f1916a08556782378ed1 (diff) |
Add the 'restrict' type qualifier to the prototypes of `sigaction',
`sigprocmask', `sigaltstack', and `sigwait' as well as to the
prototypes of the apparantly unimplemented functions `sigtimedwait'
and `sigwaitinfo'. This complies with IEEE Std 1003.1-2001.
Notes
Notes:
svn path=/head/; revision=104368
Diffstat (limited to 'lib/libc_r/man')
-rw-r--r-- | lib/libc_r/man/sigwait.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc_r/man/sigwait.3 b/lib/libc_r/man/sigwait.3 index 76376a6d3131..e20595eaa94f 100644 --- a/lib/libc_r/man/sigwait.3 +++ b/lib/libc_r/man/sigwait.3 @@ -37,7 +37,7 @@ .Sh SYNOPSIS .In signal.h .Ft int -.Fn sigwait "const sigset_t *set" "int *sig" +.Fn sigwait "const sigset_t * restrict set" "int * restrict sig" .Sh DESCRIPTION The .Fn sigwait |