ref: 5a4ab3d99038887ee11df42bbc376fa634c506eb
parent: f8eca2daeee2dcd559eafecf6290d86afcdf2b90
author: cbagwell <cbagwell>
date: Wed Jan 17 22:20:34 EST 2007
Make generated ststding.h match solaris defines to reduce compile warnings.
--- a/m4/ax_create_stdint_h.m4
+++ b/m4/ax_create_stdint_h.m4
@@ -668,18 +668,18 @@
# define INT8_MIN (-128)
# define INT16_MIN (-32767-1)
# define INT32_MIN (-2147483647-1)
-# define INT64_MIN (-__INT64_C(9223372036854775807)-1)
+# define INT64_MIN (-9223372036854775807LL-1)
/* Maximum of signed integral types. */
# define INT8_MAX (127)
# define INT16_MAX (32767)
# define INT32_MAX (2147483647)
-# define INT64_MAX (__INT64_C(9223372036854775807))
+# define INT64_MAX (9223372036854775807LL)
/* Maximum of unsigned integral types. */
-# define UINT8_MAX (255)
-# define UINT16_MAX (65535)
+# define UINT8_MAX (255U)
+# define UINT16_MAX (65535U)
# define UINT32_MAX (4294967295U)
-# define UINT64_MAX (__UINT64_C(18446744073709551615))
+# define UINT64_MAX (18446744073709551615ULL)
/* Minimum of signed integral types having a minimum size. */
# define INT_LEAST8_MIN INT8_MIN