diff options
author | David Schultz <das@FreeBSD.org> | 2009-02-28 05:15:02 +0000 |
---|---|---|
committer | David Schultz <das@FreeBSD.org> | 2009-02-28 05:15:02 +0000 |
commit | e00a6d21eb36d7888bb5bbdc2d24904211af04c8 (patch) | |
tree | 7e902fb5273a6c2db8f3abbe37e146d679621875 /lib/libc/string/strlcat.c | |
parent | dce7ffd6df4072ef4f671f0684e05581c1079168 (diff) |
Notes
Diffstat (limited to 'lib/libc/string/strlcat.c')
-rw-r--r-- | lib/libc/string/strlcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strlcat.c b/lib/libc/string/strlcat.c index feeac3bb11c60..2d13be77f1310 100644 --- a/lib/libc/string/strlcat.c +++ b/lib/libc/string/strlcat.c @@ -30,7 +30,7 @@ __FBSDID("$FreeBSD$"); * If retval >= siz, truncation occurred. */ size_t -strlcat(char *dst, const char *src, size_t siz) +strlcat(char * __restrict dst, const char * __restrict src, size_t siz) { char *d = dst; const char *s = src; |