diff options
Diffstat (limited to 'lib/libc/string/strlcpy.c')
| -rw-r--r-- | lib/libc/string/strlcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c index 187bdb71f8ba..451b6df7980d 100644 --- a/lib/libc/string/strlcpy.c +++ b/lib/libc/string/strlcpy.c @@ -28,7 +28,7 @@ __FBSDID("$FreeBSD$"); * Returns strlen(src); if retval >= siz, truncation occurred. */ size_t -strlcpy(char *dst, const char *src, size_t siz) +strlcpy(char * __restrict dst, const char * __restrict src, size_t siz) { char *d = dst; const char *s = src; |
