diff options
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/bcopy.c | 4 | ||||
-rw-r--r-- | libc/string/bzero.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/libc/string/bcopy.c b/libc/string/bcopy.c index 6234fd807..e16ba241d 100644 --- a/libc/string/bcopy.c +++ b/libc/string/bcopy.c @@ -5,11 +5,9 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -#include "_string.h" +#include <string.h> #ifdef __UCLIBC_SUSV3_LEGACY__ - - void bcopy(const void *s2, void *s1, size_t n) { #if 1 diff --git a/libc/string/bzero.c b/libc/string/bzero.c index a541f369b..32dce416e 100644 --- a/libc/string/bzero.c +++ b/libc/string/bzero.c @@ -5,7 +5,7 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -#include "_string.h" +#include <string.h> #ifdef __UCLIBC_SUSV3_LEGACY__ void bzero(void *s, size_t n) |