Duplicate max/min def

This commit is contained in:
Jay McCarthy 2010-05-18 14:52:01 -05:00
parent 7ed6c41aab
commit dd5e574747

View File

@ -6,11 +6,12 @@
#include <X11/CompositeP.h>
#include <./xwCommon.h>
_XFUNCPROTOBEGIN
#ifndef max
#define max(a, b) ((a )>(b )?(a ):(b ))
#endif
#ifndef min
#define min(a, b) ((a )<(b )?(a ):(b ))
#endif
typedef void (*compute_inside_Proc)(
#if NeedFunctionPrototypes