summaryrefslogtreecommitdiff
path: root/libiberty/bzero.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@redhat.com>2005-03-27 05:28:42 +0000
committerDJ Delorie <dj@redhat.com>2005-03-27 05:28:42 +0000
commit9334f9c6cd576128ec4fc891b5fcf267a7fca7fb (patch)
treefda195cba89e4178623ea39866f41e6e28eb67c1 /libiberty/bzero.c
parent8da8e0b3f397df66d6e1c03470f4e6c31a63d292 (diff)
downloadbinutils-gdb-9334f9c6cd576128ec4fc891b5fcf267a7fca7fb.tar.gz
merge from gcc
Diffstat (limited to 'libiberty/bzero.c')
-rw-r--r--libiberty/bzero.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libiberty/bzero.c b/libiberty/bzero.c
index 8874118698e..1f52d2d3098 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)
{