From 2f4772b37f725181c50fa88980504dc5e4564061 Mon Sep 17 00:00:00 2001 From: Robert Drehmel Date: Fri, 30 Aug 2002 21:18:39 +0000 Subject: [PATCH] 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. --- lib/libc/string/swab.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/string/swab.3 b/lib/libc/string/swab.3 index 14b5148c9772..4d27e17d5b3f 100644 --- a/lib/libc/string/swab.3 +++ b/lib/libc/string/swab.3 @@ -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