aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libiberty/bzero.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7/libiberty/bzero.c')
-rw-r--r--gcc-4.7/libiberty/bzero.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc-4.7/libiberty/bzero.c b/gcc-4.7/libiberty/bzero.c
deleted file mode 100644
index 44ad73da4..000000000
--- a/gcc-4.7/libiberty/bzero.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/* Portable version of bzero for systems without it.
- This function is in the public domain. */
-
-/*
-
-@deftypefn Supplemental void bzero (char *@var{mem}, int @var{count})
-
-Zeros @var{count} bytes starting at @var{mem}. Use of this function
-is deprecated in favor of @code{memset}.
-
-@end deftypefn
-
-*/
-
-#include <stddef.h>
-
-extern void *memset(void *, int, size_t);
-
-void
-bzero (void *to, size_t count)
-{
- memset (to, 0, count);
-}