on systems.
#include "version.h"
#include "error.h"
+/* Undefine, to avoid warning about redefinition on some systems. */
+#undef max
#define max(h,i) ((h) > (i) ? (h) : (i))
char *stpcpy ();
#include "version.h"
#include "error.h"
+/* Undefine, to avoid warning about redefinition on some systems. */
+#undef min
#define min(x, y) ((x) < (y) ? (x) : (y))
/* The name this program was run with. */
char *xrealloc ();
static void usage ();
+/* Undefine, to avoid warning about redefinition on some systems. */
+#undef min
+#undef max
#define min(A, B) ((A) < (B) ? (A) : (B))
#define max(A, B) ((A) > (B) ? (A) : (B))
static void usage ();
+/* Undefine, to avoid warning about redefinition on some systems. */
+#undef min
#define min(a, b) ((a) < (b) ? (a) : (b))
+
#define UCHAR_LIM (UCHAR_MAX + 1)
#define UCHAR(c) ((unsigned char) (c))
#include "version.h"
#include "error.h"
+/* Undefine, to avoid warning about redefinition on some systems. */
+#undef min
#define min(x, y) ((x) < (y) ? (x) : (y))
static char *find_field ();