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