diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-05 21:35:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-05 21:35:28 +0000 |
commit | ee6bf14d9e6fd8204ccda32ca942082ce31662d8 (patch) | |
tree | 8178af7b3b2626c890dfd183c1b3a4d17c8ad5a1 /math/test-tgmath.c | |
parent | b4068b0a9457295f71fb7b12d543f6001edd81e7 (diff) | |
download | glibc-ee6bf14d9e6fd8204ccda32ca942082ce31662d8.tar glibc-ee6bf14d9e6fd8204ccda32ca942082ce31662d8.tar.gz glibc-ee6bf14d9e6fd8204ccda32ca942082ce31662d8.tar.bz2 glibc-ee6bf14d9e6fd8204ccda32ca942082ce31662d8.zip |
Update.
2003-04-05 Ulrich Drepper <drepper@redhat.com>
* math/test-tgmath.c (F): Initialize c.
* sysdeps/unix/sysv/linux/mips/kernel_stat.h: Explain why
Diffstat (limited to 'math/test-tgmath.c')
-rw-r--r-- | math/test-tgmath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/test-tgmath.c b/math/test-tgmath.c index 790d8bb4cd..24474ce254 100644 --- a/math/test-tgmath.c +++ b/math/test-tgmath.c @@ -1,5 +1,5 @@ /* Test compilation of tgmath macros. - Copyright (C) 2001 Free Software Foundation, Inc. + Copyright (C) 2001, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com> and Ulrich Drepper <drepper@redhat.com>, 2001. @@ -162,7 +162,7 @@ main (void) static void F(compile_test) (void) { - TYPE a, b, c; + TYPE a, b, c = 1.0; int i; long int j; long long int k; |