diff options
author | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-23 12:01:51 +0000 |
---|---|---|
committer | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-23 12:01:51 +0000 |
commit | da344d0ea92b1e566f53b1bb31eb4ac8bd7b6c5f (patch) | |
tree | b32f337d58ad38b5d1c90d975ae50202a2ed0077 /newlib/libc/string/bzero.c | |
parent | 0792b19670ce1024020c30422770e27599f8c676 (diff) | |
download | newlib-da344d0ea92b1e566f53b1bb31eb4ac8bd7b6c5f.zip newlib-da344d0ea92b1e566f53b1bb31eb4ac8bd7b6c5f.tar.gz newlib-da344d0ea92b1e566f53b1bb31eb4ac8bd7b6c5f.tar.bz2 |
2011-08-23 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/misc/ffs.c, libc/string/bcmp.c, libc/string/bcopy.c,
libc/string/bzero.c, libc/string/index.c, libc/string/rindex.c,
libc/string/strcasecmp.c, libc/string/strncasecmp.c:
Let synopsis reference "#include <strings.h>".
Diffstat (limited to 'newlib/libc/string/bzero.c')
-rw-r--r-- | newlib/libc/string/bzero.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/string/bzero.c b/newlib/libc/string/bzero.c index 4db3574..dbcae02 100644 --- a/newlib/libc/string/bzero.c +++ b/newlib/libc/string/bzero.c @@ -6,11 +6,11 @@ INDEX bzero ANSI_SYNOPSIS - #include <string.h> + #include <strings.h> void bzero(void *<[b]>, size_t <[length]>); TRAD_SYNOPSIS - #include <string.h> + #include <strings.h> void bzero(<[b]>, <[length]>) void *<[b]>; size_t <[length]>; |