diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-17 09:43:03 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-17 09:43:03 +0000 |
commit | 49409c3345d6f522bae4cbdaee4507639fba700c (patch) | |
tree | ecb2c20e87c1ad94d0e262d11181af43f7d37449 | |
parent | 92e4472f1fe087c1d2c239b3de7f7348d1a5c933 (diff) | |
download | glibc-49409c3345d6f522bae4cbdaee4507639fba700c.tar.gz glibc-49409c3345d6f522bae4cbdaee4507639fba700c.tar.xz glibc-49409c3345d6f522bae4cbdaee4507639fba700c.zip |
Update.
* math/libm-test.c (jn_test): Adjust delta. 1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> * libio/vwprintf.c: Include <wchar.h> for prototypes. * libio/wprintf.c: Likewise. 1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de>
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | libio/vwprintf.c | 3 | ||||
-rw-r--r-- | libio/wprintf.c | 2 | ||||
-rw-r--r-- | math/libm-test.c | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 4a00f8220b..e2e3f884b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> + * math/libm-test.c (jn_test): Adjust delta. + +1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> + + * libio/vwprintf.c: Include <wchar.h> for prototypes. + * libio/wprintf.c: Likewise. + +1999-06-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> + * elf/dl-load.c (_dl_init_paths): Add one more element to aelem to not write beyond allocated memory. Reported by John Reiser <jreiser@BitWagon.com>, closes PR libc/1167. diff --git a/libio/vwprintf.c b/libio/vwprintf.c index 1f3102e4ff..2394ec6e15 100644 --- a/libio/vwprintf.c +++ b/libio/vwprintf.c @@ -17,8 +17,7 @@ Boston, MA 02111-1307, USA. */ #include <stdarg.h> -#undef __OPTIMIZE__ /* Avoid inline `vwprintf' function. */ -#include <stdio.h> +#include <wchar.h> /* Write formatted output to stdout according to the format string FORMAT, using the argument list in ARG. */ diff --git a/libio/wprintf.c b/libio/wprintf.c index 6fb6c32554..7b5835bf5b 100644 --- a/libio/wprintf.c +++ b/libio/wprintf.c @@ -17,7 +17,7 @@ Boston, MA 02111-1307, USA. */ #include <stdarg.h> -#include <stdio.h> +#include <wchar.h> /* Write formatted output to stdout from the format string FORMAT. */ /* VARARGS1 */ diff --git a/math/libm-test.c b/math/libm-test.c index 8e52d00c9d..d0b0c766bf 100644 --- a/math/libm-test.c +++ b/math/libm-test.c @@ -5616,7 +5616,7 @@ jn_test (void) check_eps ("jn (3, 1.0) = 0.01956...", FUNC(jn) (3, 1.0), 0.019563353982668405919, CHOOSE (0, 0, 1.9e-9)); check_eps ("jn (3, 2.0) = 0.12894...", FUNC(jn) (3, 2.0), 0.12894324947440205110, - CHOOSE(0, 3e-17, 0)); + CHOOSE(0, 3e-17, 1.5e-8)); check_eps ("jn (3, 10.0) = 0.05837...", FUNC(jn) (3, 10.0), 0.058379379305186812343, CHOOSE(0, 3e-17, 1.9e-8)); |