svn commit: r240719 - head/lib/libc/sys
Kevin Lo
kevlo at FreeBSD.org
Thu Sep 20 02:25:19 UTC 2012
Author: kevlo
Date: Thu Sep 20 02:25:18 2012
New Revision: 240719
URL: http://svn.freebsd.org/changeset/base/240719
Log:
Remove the restrict qualifier to match function prototype.
Modified:
head/lib/libc/sys/recv.2
Modified: head/lib/libc/sys/recv.2
==============================================================================
--- head/lib/libc/sys/recv.2 Thu Sep 20 01:23:54 2012 (r240718)
+++ head/lib/libc/sys/recv.2 Thu Sep 20 02:25:18 2012 (r240719)
@@ -44,7 +44,7 @@
.Ft ssize_t
.Fn recv "int s" "void *buf" "size_t len" "int flags"
.Ft ssize_t
-.Fn recvfrom "int s" "void * restrict buf" "size_t len" "int flags" "struct sockaddr * restrict from" "socklen_t * restrict fromlen"
+.Fn recvfrom "int s" "void *buf" "size_t len" "int flags" "struct sockaddr * restrict from" "socklen_t * restrict fromlen"
.Ft ssize_t
.Fn recvmsg "int s" "struct msghdr *msg" "int flags"
.Sh DESCRIPTION
More information about the svn-src-head
mailing list