Add the 'restrict' type qualifier to the function prototype

of the swab(3) function in its manual page to match the
standardization by POSIX.1-2001.
This commit is contained in:
Robert Drehmel 2002-08-30 21:18:39 +00:00
parent 9abf5797a0
commit 2f4772b37f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=102643

View file

@ -43,7 +43,7 @@
.Sh SYNOPSIS
.In string.h
.Ft void
.Fn swab "const void *src" "void *dst" "size_t len"
.Fn swab "const void * restrict src" "void * restrict dst" "size_t len"
.Sh DESCRIPTION
The function
.Fn swab