summaryrefslogtreecommitdiff
path: root/lib/fma.c
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2019-09-22 23:23:20 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2019-09-22 23:25:29 -0700
commit9e78024bad107fe786cc3e5e328a475921ea0873 (patch)
tree15cecf41e2eb10fdca8b44a78379cea6c20a87f1 /lib/fma.c
parentcb5185a539e681cbe26a6ee0de6f0f214d0ca5c0 (diff)
downloadgnulib-9e78024bad107fe786cc3e5e328a475921ea0873.tar.gz
Update some URLs
This is a clerical change that mostly changes http: to https: in URLs where either will work. It also updates some URLs that have moved, removes some URLs that no longer work, and fixes related text.
Diffstat (limited to 'lib/fma.c')
-rw-r--r--lib/fma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/fma.c b/lib/fma.c
index d21a6997d8..8db415bdf1 100644
--- a/lib/fma.c
+++ b/lib/fma.c
@@ -721,7 +721,7 @@ FUNC (DOUBLE x, DOUBLE y, DOUBLE z)
roundoff_bits = sum_bits - keep_bits; /* > 0, <= sum_bits */
{
#if HAVE_FEGETROUND && defined FE_TOWARDZERO
- /* Cf. <http://pubs.opengroup.org/onlinepubs/9699919799/functions/fegetround.html> */
+ /* Cf. <https://pubs.opengroup.org/onlinepubs/9699919799/functions/fegetround.html> */
int rounding_mode = fegetround ();
if (rounding_mode == FE_TOWARDZERO)
round_up = 0;
@@ -730,7 +730,7 @@ FUNC (DOUBLE x, DOUBLE y, DOUBLE z)
else if (rounding_mode == FE_UPWARD)
round_up = !sign;
#else
- /* Cf. <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/float.h.html> */
+ /* Cf. <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/float.h.html> */
int rounding_mode = FLT_ROUNDS;
if (rounding_mode == 0) /* toward zero */
round_up = 0;