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 | |
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.
-rw-r--r-- | newlib/ChangeLog | 7 | ||||
-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 |
5 files changed, 11 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 238800b3b..fc4d4537e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,12 @@ 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. + +2002-09-03 Jeff Johnston <jjohnstn@redhat.com> + * libc/include/sys/_types.h (_flock_t): Added. * libc/include/sys/lock.h (__lock_try_acquire): New interface. (__lock_try_acquire_recursive): Ditto. 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 * |