diff options
author | Andreas Jaeger <aj@suse.de> | 2003-06-25 11:04:58 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2003-06-25 11:04:58 +0000 |
commit | fa4a36fdffe7a96c60dd5baf383e6c731a11a8c5 (patch) | |
tree | ad95dd50a3c7053e5d7c08f3b3495ca5977479e4 /stdlib/tst-strtod.c | |
parent | 657f0417ed66d26fa80bbf3ef7081c59e15fbdd6 (diff) | |
download | glibc-fa4a36fdffe7a96c60dd5baf383e6c731a11a8c5.tar.gz |
* posix/transbug.c: Include <string.h> for memset and strlen
declarations.
* stdio-common/tst-sprintf.c: Include <stdlib.h> for free declaration.
* stdlib/tst-strtod.c (main): Pass long double value.
* test-skeleton.c: Include <time.h> for nanosleep declaration.
2003-06-25 Andreas Jaeger <aj@suse.de>
* posix/transbug.c: Include <string.h> for memset and strlen
declarations.
* stdio-common/tst-sprintf.c: Include <stdlib.h> for free declaration.
* stdlib/tst-strtod.c (main): Pass long double value.
* test-skeleton.c: Include <time.h> for nanosleep declaration.
Diffstat (limited to 'stdlib/tst-strtod.c')
-rw-r--r-- | stdlib/tst-strtod.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index c466e0fb77..2b93bbd95c 100644 --- a/stdlib/tst-strtod.c +++ b/stdlib/tst-strtod.c @@ -153,7 +153,7 @@ main (int argc, char ** argv) if (strtold (input2, NULL) != +1.000000000116415321826934814453125) { printf ("input2: %La != %La\n", strtold (input2, NULL), - +1.000000000116415321826934814453125); + +1.000000000116415321826934814453125L); status = 1; } |