From 0f72ac224ec3a8d1fc7ab296fd09d7d0d9ff3386 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Mon, 21 Mar 2011 23:20:05 +0100 Subject: bcopy.c,bzero.c: include string.h instead of _string.h No need for internal _string.h. For now include string.h, although the correct header would be strings.h. Signed-off-by: Peter S. Mazinger Signed-off-by: Bernhard Reutner-Fischer --- libc/string/bcopy.c | 4 +--- libc/string/bzero.c | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'libc/string') 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 #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 #ifdef __UCLIBC_SUSV3_LEGACY__ void bzero(void *s, size_t n) -- cgit v1.2.3