From 653bb754d4a1a04ff5ef082a3ca6b0ee9f1d163e Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Wed, 11 Jun 2008 12:12:40 +0000 Subject: Fix two more cases where a libc_hidden_proto was added to string.h while no libc_hidden_def exists for the function. --- libc/string/memccpy.c | 1 + libc/string/strlcat.c | 1 + 2 files changed, 2 insertions(+) (limited to 'libc/string') 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) -- cgit v1.2.3