]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/bzero.c
bcmp.c: Fix warnings and implement using memcmp.
[thirdparty/gcc.git] / libiberty / bzero.c
index 1f52d2d3098f311b4e900f9a871174cdc17e7bec..44ad73da4d6e956cd012fc4de3ddc32b8a37f1ec 100644 (file)
@@ -12,12 +12,12 @@ is deprecated in favor of @code{memset}.
 
 */
 
+#include <stddef.h>
+
+extern void *memset(void *, int, size_t);
 
 void
-bzero (char *to, int count)
+bzero (void *to, size_t count)
 {
-  while (count-- > 0)
-    {
-      *to++ = 0;
-    }
+  memset (to, 0, count);
 }