summaryrefslogtreecommitdiff
path: root/sysdeps/i386/bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/bzero.c')
-rw-r--r--sysdeps/i386/bzero.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/bzero.c b/sysdeps/i386/bzero.c
index 5cc5989f90..99f2352dc6 100644
--- a/sysdeps/i386/bzero.c
+++ b/sysdeps/i386/bzero.c
@@ -26,7 +26,7 @@
#ifdef __GNUC__
void
-bzero (dstpp, len)
+__bzero (dstpp, len)
void *dstpp;
size_t len;
{
@@ -75,6 +75,7 @@ bzero (dstpp, len)
"0" (dstp), "c" (len), "a" (x) :
"cx");
}
+weak_alias (__bzero, bzero)
#else
#include <sysdeps/generic/bzero.c>