diff options
Diffstat (limited to 'lib/libc/string/strcpy.3')
-rw-r--r-- | lib/libc/string/strcpy.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strcpy.3 b/lib/libc/string/strcpy.3 index ae399ab..9a61727 100644 --- a/lib/libc/string/strcpy.3 +++ b/lib/libc/string/strcpy.3 @@ -47,9 +47,9 @@ .Sh SYNOPSIS .In string.h .Ft char * -.Fn strcpy "char *dst" "const char *src" +.Fn strcpy "char *restrict dst" "const char *restrict src" .Ft char * -.Fn strncpy "char *dst" "const char *src" "size_t len" +.Fn strncpy "char *restrict dst" "const char *restrict src" "size_t len" .Sh DESCRIPTION The .Fn strcpy |