--- src/port/qsort.c.orig Thu Oct 12 09:14:34 2006 +++ src/port/qsort.c Thu Oct 12 09:29:15 2006 @@ -50,6 +50,7 @@ int (*) (const void *, const void *)); static void swapfunc(char *, char *, size_t, int); +#undef min #define min(a, b) ((a) < (b) ? (a) : (b)) /* --- src/port/qsort_arg.c.orig Thu Oct 12 09:14:40 2006 +++ src/port/qsort_arg.c Thu Oct 12 09:29:32 2006 @@ -50,6 +50,7 @@ qsort_arg_comparator cmp, void *arg); static void swapfunc(char *, char *, size_t, int); +#undef min #define min(a, b) ((a) < (b) ? (a) : (b)) /*