summaryrefslogtreecommitdiff
path: root/libc/string/strlcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strlcpy.c')
-rw-r--r--libc/string/strlcpy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/string/strlcpy.c b/libc/string/strlcpy.c
index e4f4c3152..e888b85b2 100644
--- a/libc/string/strlcpy.c
+++ b/libc/string/strlcpy.c
@@ -22,7 +22,9 @@ libc_hidden_proto(strlcpy)
* Returns strlen(src), so truncation occurred if the return value is >= n. */
#ifdef WANT_WIDE
-attribute_hidden
+size_t Wstrlcpy(register Wchar *__restrict dst,
+ register const Wchar *__restrict src,
+ size_t n) attribute_hidden;
#endif
size_t Wstrlcpy(register Wchar *__restrict dst,
register const Wchar *__restrict src,