diff options
Diffstat (limited to 'libiberty/bzero.c')
-rw-r--r-- | libiberty/bzero.c | 4 |
1 files changed, 1 insertions, 3 deletions
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) { |