From 9334f9c6cd576128ec4fc891b5fcf267a7fca7fb Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Sun, 27 Mar 2005 05:28:42 +0000 Subject: merge from gcc --- libiberty/bzero.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libiberty/bzero.c') diff --git a/libiberty/bzero.c b/libiberty/bzero.c index 8874118..1f52d2d 100644 --- a/libiberty/bzero.c +++ b/libiberty/bzero.c @@ -14,9 +14,7 @@ is deprecated in favor of @code{memset}. void -bzero (to, count) - char *to; - int count; +bzero (char *to, int count) { while (count-- > 0) { -- cgit v1.1