Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/string/bzero.c')
-rw-r--r--newlib/libc/string/bzero.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/newlib/libc/string/bzero.c b/newlib/libc/string/bzero.c
index 661285f7b..e9e78c938 100644
--- a/newlib/libc/string/bzero.c
+++ b/newlib/libc/string/bzero.c
@@ -7,12 +7,12 @@ INDEX
ANSI_SYNOPSIS
#include <string.h>
- void bzero(void *<[b]>, size_t <[length]>);
+ void bzero(char *<[b]>, size_t <[length]>);
TRAD_SYNOPSIS
#include <string.h>
void bzero(<[b]>, <[length]>)
- void *<[b]>;
+ char *<[b]>;
size_t <[length]>;
DESCRIPTION
@@ -34,10 +34,9 @@ Neither ANSI C nor the System V Interface Definition (Issue 2) require
_VOID
_DEFUN (bzero, (b, length),
- void *b _AND
+ char *b _AND
size_t length)
{
- char *ptr = (char *)b;
while (length--)
- *ptr++ = 0;
+ *b++ = 0;
}