diff --git a/eeshow/diff.c b/eeshow/diff.c index 114a5bf..bda0f08 100644 --- a/eeshow/diff.c +++ b/eeshow/diff.c @@ -37,6 +37,15 @@ #define MASK 0xffffff +/* steal from schhist/ppmdiff.c */ + +#define ONLY_OLD 0xff5050 +#define ONLY_NEW 0x00c000 +#define BOTH 0x707070 + +#define AREA_FILL 0xffffc8 + + struct area { int xa, ya, xb, yb; @@ -178,15 +187,6 @@ fail_open: } -/* steal from schhist/ppmdiff.c */ - -#define ONLY_OLD 0xff0000 -#define ONLY_NEW 0x00d000 -#define BOTH 0x707070 - -#define AREA_FILL 0xffffc8 - - static void mark_area(struct diff *diff, int x, int y) { struct area *area;