From 18bc92cb83fdf0f0472432fb7c30914a9cd4df01 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 15 Mar 2015 21:08:54 -0400 Subject: libiberty: remove source files that either duplicate functionality already present in all modern libc implementations, or are incompatible with modern development environments, or both. --- libiberty/bzero.c | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 libiberty/bzero.c (limited to 'libiberty/bzero.c') diff --git a/libiberty/bzero.c b/libiberty/bzero.c deleted file mode 100644 index 44ad73da4..000000000 --- a/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 - -extern void *memset(void *, int, size_t); - -void -bzero (void *to, size_t count) -{ - memset (to, 0, count); -} -- cgit v1.2.3