summaryrefslogtreecommitdiff
path: root/libc/string
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2011-03-21 23:20:05 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2012-06-15 14:00:31 +0200
commit0f72ac224ec3a8d1fc7ab296fd09d7d0d9ff3386 (patch)
tree635635d8ce32e9e9c26a524aecfbfa234a4145fe /libc/string
parent68310406372d0bb47b4b1cb4b1fa5ebc0a9adde6 (diff)
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 <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/string')
-rw-r--r--libc/string/bcopy.c4
-rw-r--r--libc/string/bzero.c2
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)