1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
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
This commit is contained in:
Ulrich Drepper
2003-04-05 21:35:28 +00:00
parent b4068b0a94
commit ee6bf14d9e
2 changed files with 7 additions and 3 deletions

View File

@ -1,10 +1,14 @@
2003-04-05 Ulrich Drepper <drepper@redhat.com>
* math/test-tgmath.c (F): Initialize c.
2003-04-05 Alexandre Oliva <aoliva@redhat.com> 2003-04-05 Alexandre Oliva <aoliva@redhat.com>
* sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c: New. * sysdeps/unix/sysv/linux/mips/mips64/n32/ftruncate64.c: New.
* sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c: New. * sysdeps/unix/sysv/linux/mips/mips64/n32/truncate64.c: New.
* sysdeps/unix/sysv/linux/kernel-features.h: fcntl64 is available * sysdeps/unix/sysv/linux/kernel-features.h: fcntl64 is available
on mips n32. on mips n32.
* sysdeps/unix/sysv/linux/mips/kernel_stat.h: Explain why * sysdeps/unix/sysv/linux/mips/kernel_stat.h: Explain why
XSTAT_IS_XSTAT64 must not be used for mips n64. Use 64-bit data XSTAT_IS_XSTAT64 must not be used for mips n64. Use 64-bit data
structure on n32 as well. structure on n32 as well.
* sysdeps/unix/sysv/linux/mips/bits/stat.h: Use POSIX-compliant * sysdeps/unix/sysv/linux/mips/bits/stat.h: Use POSIX-compliant

View File

@ -1,5 +1,5 @@
/* Test compilation of tgmath macros. /* 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. This file is part of the GNU C Library.
Contributed by Jakub Jelinek <jakub@redhat.com> and Contributed by Jakub Jelinek <jakub@redhat.com> and
Ulrich Drepper <drepper@redhat.com>, 2001. Ulrich Drepper <drepper@redhat.com>, 2001.
@ -162,7 +162,7 @@ main (void)
static void static void
F(compile_test) (void) F(compile_test) (void)
{ {
TYPE a, b, c; TYPE a, b, c = 1.0;
int i; int i;
long int j; long int j;
long long int k; long long int k;