MIN and MAX is defined in common.h

SVN revision: 16803
This commit is contained in:
Sebastian Dransfeld 2005-09-20 16:56:42 +00:00
parent 3e8baf7492
commit 522a9027b5
1 changed files with 0 additions and 3 deletions

View File

@ -72,9 +72,6 @@ if (!(param)) \
return; \
}
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
/* internal typedefs for function pointers */
typedef void (*Imlib_Internal_Progress_Function) (void *, char, int, int,
int, int);