--- sourceforge.net/trunk/rdesktop/rdesktop.h 2004/01/21 11:08:39 567 +++ sourceforge.net/trunk/rdesktop/rdesktop.h 2004/01/21 14:40:40 569 @@ -49,9 +49,11 @@ #endif #define STRNCPY(dst,src,n) { strncpy(dst,src,n-1); dst[n-1] = 0; } + #ifndef MIN #define MIN(x,y) (((x) < (y)) ? (x) : (y)) #endif + #ifndef MAX #define MAX(x,y) (((x) > (y)) ? (x) : (y)) #endif