diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 06:16:50 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-30 06:16:50 +0000 |
commit | 8930fcf9beee6c0d1ace2e4a67be1525f5d6b8aa (patch) | |
tree | a31131c64f53ec120a9998a88ae4442c97d1ec00 /sysdeps/sparc | |
parent | af38d7ce63a5c0196a1b2e353f84081ed17e9ead (diff) | |
download | glibc-8930fcf9beee6c0d1ace2e4a67be1525f5d6b8aa.tar.gz glibc-8930fcf9beee6c0d1ace2e4a67be1525f5d6b8aa.tar.xz glibc-8930fcf9beee6c0d1ace2e4a67be1525f5d6b8aa.zip |
Update.
2004-09-29 Jakub Jelinek <jakub@redhat.com> * time/tzfile.c (tzfile_mtime): New variable. (__tzfile_read): Reread the file if mtime is different. 2004-09-28 Jakub Jelinek <jakub@redhat.com> * sysdeps/alpha/fpu/bits/mathinline.h (__fdimf, __fdim, fdimf, fdim): Handle +inf/+inf. * sysdeps/powerpc/fpu/bits/mathinline.h (fdim, fdimf): Likewise. * sysdeps/sparc/fpu/bits/mathinline.h (fdim, fdimf): Likewise.
Diffstat (limited to 'sysdeps/sparc')
-rw-r--r-- | sysdeps/sparc/fpu/bits/mathinline.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/sparc/fpu/bits/mathinline.h b/sysdeps/sparc/fpu/bits/mathinline.h index 8811314278..2b578d04cd 100644 --- a/sysdeps/sparc/fpu/bits/mathinline.h +++ b/sysdeps/sparc/fpu/bits/mathinline.h @@ -223,14 +223,14 @@ __MATH_INLINE double fdim (double __x, double __y) __THROW; __MATH_INLINE double fdim (double __x, double __y) __THROW { - return __x < __y ? 0 : __x - __y; + return __x <= __y ? 0 : __x - __y; } __MATH_INLINE float fdimf (float __x, float __y) __THROW; __MATH_INLINE float fdimf (float __x, float __y) __THROW { - return __x < __y ? 0 : __x - __y; + return __x <= __y ? 0 : __x - __y; } # endif /* !__NO_MATH_INLINES */ |