Fix for redefinition of MIN and MAX macros
This commit is contained in:
@ -2,8 +2,12 @@
|
|||||||
#define SKYGW_UTILS_H
|
#define SKYGW_UTILS_H
|
||||||
|
|
||||||
#define MLIST
|
#define MLIST
|
||||||
|
#ifndef MIN
|
||||||
#define MIN(a,b) (a<b ? a : b)
|
#define MIN(a,b) (a<b ? a : b)
|
||||||
|
#endif
|
||||||
|
#ifndef MAX
|
||||||
#define MAX(a,b) (a>b ? a : b)
|
#define MAX(a,b) (a>b ? a : b)
|
||||||
|
#endif
|
||||||
#define FSYNCLIMIT 10
|
#define FSYNCLIMIT 10
|
||||||
|
|
||||||
#include "skygw_types.h"
|
#include "skygw_types.h"
|
||||||
|
Reference in New Issue
Block a user