diff options
author | ru <ru@FreeBSD.org> | 2008-02-26 20:33:52 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2008-02-26 20:33:52 +0000 |
commit | f12be23c59237af6f4739c6d7763f7ee039dc9e9 (patch) | |
tree | 5dd57b2dc8ddff1da553e90847f300a69c81ce6d /lib/libc | |
parent | 8f9a5ef13f41c23ac68bd42ad1ab4ec1a9308790 (diff) | |
download | FreeBSD-src-f12be23c59237af6f4739c6d7763f7ee039dc9e9.zip FreeBSD-src-f12be23c59237af6f4739c6d7763f7ee039dc9e9.tar.gz |
Added the "restrict" type-qualifier to the readlink() prototype.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/readlink.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/readlink.2 b/lib/libc/sys/readlink.2 index e747e57..1c2593a 100644 --- a/lib/libc/sys/readlink.2 +++ b/lib/libc/sys/readlink.2 @@ -28,7 +28,7 @@ .\" @(#)readlink.2 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd February 12, 2008 +.Dd February 26, 2008 .Dt READLINK 2 .Os .Sh NAME @@ -39,7 +39,7 @@ .Sh SYNOPSIS .In unistd.h .Ft ssize_t -.Fn readlink "const char *path" "char *buf" "size_t bufsiz" +.Fn readlink "const char *restrict path" "char *restrict buf" "size_t bufsiz" .Sh DESCRIPTION The .Fn readlink |