Duplicate max/min def
This commit is contained in:
parent
7ed6c41aab
commit
dd5e574747
|
@ -6,11 +6,12 @@
|
||||||
#include <X11/CompositeP.h>
|
#include <X11/CompositeP.h>
|
||||||
#include <./xwCommon.h>
|
#include <./xwCommon.h>
|
||||||
_XFUNCPROTOBEGIN
|
_XFUNCPROTOBEGIN
|
||||||
|
#ifndef max
|
||||||
#define max(a, b) ((a )>(b )?(a ):(b ))
|
#define max(a, b) ((a )>(b )?(a ):(b ))
|
||||||
|
#endif
|
||||||
|
#ifndef min
|
||||||
#define min(a, b) ((a )<(b )?(a ):(b ))
|
#define min(a, b) ((a )<(b )?(a ):(b ))
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef void (*compute_inside_Proc)(
|
typedef void (*compute_inside_Proc)(
|
||||||
#if NeedFunctionPrototypes
|
#if NeedFunctionPrototypes
|
||||||
|
|
Loading…
Reference in New Issue
Block a user