Browse Source

Fix two more cases where a libc_hidden_proto was added to string.h while
no libc_hidden_def exists for the function.

Bernd Schmidt 16 years ago
parent
commit
653bb754d4
2 changed files with 2 additions and 0 deletions
  1. 1 0
      libc/string/memccpy.c
  2. 1 0
      libc/string/strlcat.c

+ 1 - 0
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)

+ 1 - 0
libc/string/strlcat.c

@@ -44,3 +44,4 @@ size_t strlcat(register char *__restrict dst,
 
 	return len;
 }
+libc_hidden_def(strlcat)