aboutsummaryrefslogtreecommitdiffstats
path: root/support/intprops.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2017-12-01 14:01:39 +0200
committerArnold D. Robbins <arnold@skeeve.com>2017-12-01 14:01:39 +0200
commitdf39482aeb06588dec07e3d25779547dbe9fd98b (patch)
treef4be6c8a8f640e05855050f3dac4658f8f8a27c0 /support/intprops.h
parentb3388ecca941bbd76ecca9413c78295c97b9013c (diff)
parent62495dfc7853ccf2a35569000223941a5fe552ba (diff)
downloadegawk-df39482aeb06588dec07e3d25779547dbe9fd98b.tar.gz
egawk-df39482aeb06588dec07e3d25779547dbe9fd98b.tar.bz2
egawk-df39482aeb06588dec07e3d25779547dbe9fd98b.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'support/intprops.h')
-rw-r--r--support/intprops.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/support/intprops.h b/support/intprops.h
index 33a7ec5a..fd6d9268 100644
--- a/support/intprops.h
+++ b/support/intprops.h
@@ -13,7 +13,7 @@
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
+ along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* Written by Paul Eggert. */
@@ -26,7 +26,7 @@
#define _GL_INT_CONVERT(e, v) (0 * (e) + (v))
/* Act like _GL_INT_CONVERT (E, -V) but work around a bug in IRIX 6.5 cc; see
- <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00406.html>. */
+ <https://lists.gnu.org/r/bug-gnulib/2011-05/msg00406.html>. */
#define _GL_INT_NEGATE_CONVERT(e, v) (0 * (e) - (v))
/* The extra casts in the following macros work around compiler bugs,
@@ -179,7 +179,7 @@
/* Return 1 if A * B would overflow in [MIN,MAX] arithmetic.
See above for restrictions. Avoid && and || as they tickle
bugs in Sun C 5.11 2010/08/13 and other compilers; see
- <http://lists.gnu.org/archive/html/bug-gnulib/2011-05/msg00401.html>. */
+ <https://lists.gnu.org/r/bug-gnulib/2011-05/msg00401.html>. */
#define INT_MULTIPLY_RANGE_OVERFLOW(a, b, min, max) \
((b) < 0 \
? ((a) < 0 \
@@ -443,7 +443,7 @@
implementation-defined result or signal for values outside T's
range. However, code that works around this theoretical problem
runs afoul of a compiler bug in Oracle Studio 12.3 x86. See:
- http://lists.gnu.org/archive/html/bug-gnulib/2017-04/msg00049.html
+ https://lists.gnu.org/r/bug-gnulib/2017-04/msg00049.html
As the compiler bug is real, don't try to work around the
theoretical problem. */