2011-08-19 Ralf Corsépius <ralf.corsepius@rtems.org>

* libc/string/bcmp.c: Include <strings.h> for "bcmp".
	* libc/string/bcopy.c: Include <strings.h> for "bcopy".
	* libc/string/strcasestr.c: Include <strings.h> for "strncasecmp".
	* libc/time/strptime.c: Include <strings.h> for "strncasecmp".
This commit is contained in:
Ralf Corsepius 2011-08-19 16:58:20 +00:00
parent c0fabb9f3d
commit af8a9163c3
5 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2011-08-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/string/bcmp.c: Include <strings.h> for "bcmp".
* libc/string/bcopy.c: Include <strings.h> for "bcopy".
* libc/string/strcasestr.c: Include <strings.h> for "strncasecmp".
* libc/time/strptime.c: Include <strings.h> for "strncasecmp".
2011-08-19 Corinna Vinschen <vinschen@redhat.com> 2011-08-19 Corinna Vinschen <vinschen@redhat.com>
* libc/include/process.h: Remove exec family function declarations. * libc/include/process.h: Remove exec family function declarations.

View File

@ -36,6 +36,7 @@ QUICKREF
*/ */
#include <string.h> #include <string.h>
#include <strings.h>
int int
_DEFUN (bcmp, (m1, m2, n), _DEFUN (bcmp, (m1, m2, n),

View File

@ -27,6 +27,7 @@ QUICKREF
*/ */
#include <string.h> #include <string.h>
#include <strings.h>
void void
_DEFUN (bcopy, (b1, b2, length), _DEFUN (bcopy, (b1, b2, length),

View File

@ -76,6 +76,7 @@ QUICKREF
#include <ctype.h> #include <ctype.h>
#include <string.h> #include <string.h>
#include <strings.h>
#if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__) #if !defined(PREFER_SIZE_OVER_SPEED) && !defined(__OPTIMIZE_SIZE__)
# define RETURN_TYPE char * # define RETURN_TYPE char *

View File

@ -34,6 +34,7 @@
#include <stdio.h> #include <stdio.h>
#include <time.h> #include <time.h>
#include <string.h> #include <string.h>
#include <strings.h>
#include <ctype.h> #include <ctype.h>
#include <stdlib.h> #include <stdlib.h>
#include "../locale/timelocal.h" #include "../locale/timelocal.h"