From 6a3e57bb546b094bfc8ec24a3ec63b2bd4496d65 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 29 May 2011 14:52:18 -0700 Subject: Adjust to recent gnulib change for @GUARD_PREFIX@. --- lib/intprops.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'lib/intprops.h') diff --git a/lib/intprops.h b/lib/intprops.h index d722648555b..1f6a539c183 100644 --- a/lib/intprops.h +++ b/lib/intprops.h @@ -22,9 +22,8 @@ #include -/* Return a integer value, converted to the same type as the integer - expression E after integer type promotion. V is the unconverted value. - E should not have side effects. */ +/* Return an integer value, converted to the same type as the integer + expression E after integer type promotion. V is the unconverted value. */ #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 @@ -53,7 +52,7 @@ #define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) /* Return 1 if the integer expression E, after integer promotion, has - a signed type. E should not have side effects. */ + a signed type. */ #define _GL_INT_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0) -- cgit v1.2.1