diff options
author | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-22 16:49:37 +0000 |
---|---|---|
committer | Ralf Corsepius <ralf.corsepius@rtems.org> | 2011-08-22 16:49:37 +0000 |
commit | f3e873f25016c24c4b4d77933183ecae36dcc29a (patch) | |
tree | 413ea44a654223003e37c1baf3bd43669c526b32 /newlib/libc/string/bzero.c | |
parent | 8f8977bb8b27c097aeef2c17f6dd3d19736fd8e3 (diff) | |
download | newlib-f3e873f25016c24c4b4d77933183ecae36dcc29a.zip newlib-f3e873f25016c24c4b4d77933183ecae36dcc29a.tar.gz newlib-f3e873f25016c24c4b4d77933183ecae36dcc29a.tar.bz2 |
2011-08-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/string/index.c: Include <strings.h> for "index".
* libc/string/rindex.c: Include <strings.h> for "rindex".
* libc/string/strcasecmp.c: Include <strings.h> for "strcasecmp".
Don't include <string.h>.
* libc/string/strncasecmp.c: Include <strings.h> for "strncasecmp".
Don't include <string.h>.
* libc/string/bzero.c: Include <strings.h> for "bzero".
Don't include <string.h>
* libc/misc/ffs.c: Include <strings.h> for "ffs".
Don't include <_ansi.h>.
Diffstat (limited to 'newlib/libc/string/bzero.c')
-rw-r--r-- | newlib/libc/string/bzero.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/string/bzero.c b/newlib/libc/string/bzero.c index 661285f..4db3574 100644 --- a/newlib/libc/string/bzero.c +++ b/newlib/libc/string/bzero.c @@ -30,7 +30,7 @@ Neither ANSI C nor the System V Interface Definition (Issue 2) require <<bzero>> requires no supporting OS subroutines. */ -#include <string.h> +#include <strings.h> _VOID _DEFUN (bzero, (b, length), |