aboutsummaryrefslogtreecommitdiffstats
path: root/lib/intprops.h
diff options
context:
space:
mode:
authorPaul Eggert2011-05-29 14:52:18 -0700
committerPaul Eggert2011-05-29 14:52:18 -0700
commit6a3e57bb546b094bfc8ec24a3ec63b2bd4496d65 (patch)
tree7941b467caf44ec0c4297e4a6afb1b4ab3f0b9a0 /lib/intprops.h
parente8cbec34e8ef069f54c1189a7b6109f768047be8 (diff)
downloademacs-6a3e57bb546b094bfc8ec24a3ec63b2bd4496d65.tar.gz
emacs-6a3e57bb546b094bfc8ec24a3ec63b2bd4496d65.zip
Adjust to recent gnulib change for @GUARD_PREFIX@.
Diffstat (limited to 'lib/intprops.h')
-rw-r--r--lib/intprops.h7
1 files changed, 3 insertions, 4 deletions
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 @@
22 22
23#include <limits.h> 23#include <limits.h>
24 24
25/* Return a integer value, converted to the same type as the integer 25/* Return an integer value, converted to the same type as the integer
26 expression E after integer type promotion. V is the unconverted value. 26 expression E after integer type promotion. V is the unconverted value. */
27 E should not have side effects. */
28#define _GL_INT_CONVERT(e, v) (0 * (e) + (v)) 27#define _GL_INT_CONVERT(e, v) (0 * (e) + (v))
29 28
30/* Act like _GL_INT_CONVERT (E, -V) but work around a bug in IRIX 6.5 cc; see 29/* Act like _GL_INT_CONVERT (E, -V) but work around a bug in IRIX 6.5 cc; see
@@ -53,7 +52,7 @@
53#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) 52#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
54 53
55/* Return 1 if the integer expression E, after integer promotion, has 54/* Return 1 if the integer expression E, after integer promotion, has
56 a signed type. E should not have side effects. */ 55 a signed type. */
57#define _GL_INT_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0) 56#define _GL_INT_SIGNED(e) (_GL_INT_NEGATE_CONVERT (e, 1) < 0)
58 57
59 58