diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-03 19:52:10 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-09-03 19:52:10 +0000 |
commit | e4b0ebc1d39ce4835ffd6d94153d7840d50f6a9f (patch) | |
tree | f7bcbf660b0d7c55e6ac36e45bb0f939ed24eeed /newlib/libc/string | |
parent | 3db40db7d83ca924a935680b1c210dd11f1f660d (diff) | |
download | cygnal-e4b0ebc1d39ce4835ffd6d94153d7840d50f6a9f.tar.gz cygnal-e4b0ebc1d39ce4835ffd6d94153d7840d50f6a9f.tar.bz2 cygnal-e4b0ebc1d39ce4835ffd6d94153d7840d50f6a9f.zip |
2002-09-03 Jeff Johnston <jjohnstn@redhat.com>
* libc/string/wcschr.c: Add include of <stddef.h>.
* libc/string/wcspbrk.c: Ditto.
* libc/string/wcsrchr.c: Ditto.
* libc/string/wcsstr.c: Ditto.
Diffstat (limited to 'newlib/libc/string')
-rw-r--r-- | newlib/libc/string/wcschr.c | 1 | ||||
-rw-r--r-- | newlib/libc/string/wcspbrk.c | 1 | ||||
-rw-r--r-- | newlib/libc/string/wcsrchr.c | 1 | ||||
-rw-r--r-- | newlib/libc/string/wcsstr.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/string/wcschr.c b/newlib/libc/string/wcschr.c index 2b476f7e4..fa213c90b 100644 --- a/newlib/libc/string/wcschr.c +++ b/newlib/libc/string/wcschr.c @@ -58,6 +58,7 @@ No supporting OS subroutines are required. */ #include <_ansi.h> +#include <stddef.h> #include <wchar.h> wchar_t * diff --git a/newlib/libc/string/wcspbrk.c b/newlib/libc/string/wcspbrk.c index e2529d0a4..bfe793b15 100644 --- a/newlib/libc/string/wcspbrk.c +++ b/newlib/libc/string/wcspbrk.c @@ -57,6 +57,7 @@ No supporting OS subroutines are required. */ #include <_ansi.h> +#include <stddef.h> #include <wchar.h> wchar_t * diff --git a/newlib/libc/string/wcsrchr.c b/newlib/libc/string/wcsrchr.c index 143b45fc7..d3dc7431e 100644 --- a/newlib/libc/string/wcsrchr.c +++ b/newlib/libc/string/wcsrchr.c @@ -61,6 +61,7 @@ No supporting OS subroutines are required. */ #include <_ansi.h> +#include <stddef.h> #include <wchar.h> wchar_t * diff --git a/newlib/libc/string/wcsstr.c b/newlib/libc/string/wcsstr.c index 6a61ac3ae..30fc4631f 100644 --- a/newlib/libc/string/wcsstr.c +++ b/newlib/libc/string/wcsstr.c @@ -61,6 +61,7 @@ PORTABILITY */ #include <_ansi.h> +#include <stddef.h> #include <wchar.h> wchar_t * |