2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
+ * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
+
* sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
Do not require float-time's arg to fit in time_t (Bug#11825).
static _Noreturn void croak (char *);
#endif
+/* ULLONG_MAX is missing on Red Hat Linux 7.3; see Bug#11781. */
+#ifndef ULLONG_MAX
+#define ULLONG_MAX TYPE_MAXIMUM (unsigned long long int)
+#endif
+
/* Declare here, including term.h is problematic on some systems. */
extern void tputs (const char *, int, int (*)(int));