Lines 1-15
Link Here
|
1 |
--- converter/other/pnmtotiffcmyk.c.orig Sat May 13 09:29:45 2000 |
|
|
2 |
+++ converter/other/pnmtotiffcmyk.c Tue Jun 18 00:00:00 2002 |
3 |
@@ -71,8 +71,12 @@ |
4 |
#define VERSION 1.01 |
5 |
|
6 |
/* beware - these evaluate more than once */ |
7 |
+#ifndef MAX |
8 |
#define MAX(x, y) ( ( x ) > ( y ) ? ( x ) : ( y ) ) |
9 |
+#endif |
10 |
+#ifndef MIN |
11 |
#define MIN(x, y) ( ( x ) < ( y ) ? ( x ) : ( y ) ) |
12 |
+#endif |
13 |
|
14 |
/* only support 8 bit values */ |
15 |
#define MAXTIFFBITS 8 |