Explorar el Código

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 hace 16 años
padre
commit
653bb754d4
Se han modificado 2 ficheros con 2 adiciones y 0 borrados
  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)