pforth: improve 64-bit support
[debian/pforth] / csrc / pf_guts.h
index 36678246ce71d6ec26351b298fe279b024badd32..c0180c1970ed77f8a8da2edfa571d02ff7fe4115 100644 (file)
@@ -568,9 +568,12 @@ extern cell_t         gIncludeIndex;
 /* Force Quad alignment. */
 #define QUADUP(x) (((x)+3)&~3)
 
+#ifndef MIN
 #define MIN(a,b)  ( ((a)<(b)) ? (a) : (b) )
+#endif
+#ifndef MAX
 #define MAX(a,b)  ( ((a)>(b)) ? (a) : (b) )
-
+#endif
 
 #ifndef TOUCH
     #define TOUCH(argument) ((void)argument)