diff options
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/memccpy.c | 1 | ||||
-rw-r--r-- | libc/string/strlcat.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/libc/string/memccpy.c b/libc/string/memccpy.c index fe5a76a4d..076bdac7d 100644 --- a/libc/string/memccpy.c +++ b/libc/string/memccpy.c @@ -18,3 +18,4 @@ void *memccpy(void * __restrict s1, const void * __restrict s2, int c, size_t n) return (n == (size_t) -1) ? NULL : r1; } +libc_hidden_def(memccpy) diff --git a/libc/string/strlcat.c b/libc/string/strlcat.c index 117b8e552..d55761d4c 100644 --- a/libc/string/strlcat.c +++ b/libc/string/strlcat.c @@ -44,3 +44,4 @@ size_t strlcat(register char *__restrict dst, return len; } +libc_hidden_def(strlcat) |