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 2002-08-30 21:18:39 +00:00
parent 0ff67278c4
commit 1f380cc81f

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