]> andersk Git - moira.git/commitdiff
protect against previous defn of MAX
authordanw <danw>
Wed, 21 Oct 1998 19:27:04 +0000 (19:27 +0000)
committerdanw <danw>
Wed, 21 Oct 1998 19:27:04 +0000 (19:27 +0000)
clients/mailmaint/mailmaint.c

index 5cbedefee1e2446fa7f3f448149a09b25386aa48..4561577e8c50bddcca79203ed54c8f6ad2ab530a 100644 (file)
@@ -33,6 +33,9 @@ RCSID("$Header$");
 #define LISTMAX 50
 #define LISTSIZE 32
 #define CTL(ch) ((ch) & 037)
+#ifdef MAX
+#undef MAX
+#endif
 #define MAX(A, B) ((A) > (B) ? (A) : (B))
 
 char *whoami;          /* should not be static, for logging package */
This page took 0.308509 seconds and 5 git commands to generate.