+2006-06-27 Bruno Haible <bruno@clisp.org>
+
+ * stdlib_.h (intmax_t, uintmax_t): Undefine before typedef.
+
2006-06-26 Paul Eggert <eggert@cs.ucla.edu>
* base64.c (B64): Use _ as the formal parameter, not x, to avoid
public header files. */
#if !@HAVE_INTMAX_T@
+/* Remove possible redundant definition from gnulib's config.h first. */
+# undef intmax_t
# ifdef _STDINT_H_HAVE_INT64
typedef int64_t intmax_t;
# else
# endif
#endif
#if !@HAVE_UINTMAX_T@
+/* Remove possible redundant definition from gnulib's config.h first. */
+# undef uintmax_t
# ifdef _STDINT_H_HAVE_UINT64
typedef uint64_t uintmax_t;
# else