mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-09 09:17:34 +00:00
avoid redefined
This commit is contained in:
parent
bfad336592
commit
b3242541b2
@ -12,8 +12,12 @@
|
|||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
#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
|
||||||
|
|
||||||
/* When we deallocate a pointer in a struct, we often replace it with
|
/* When we deallocate a pointer in a struct, we often replace it with
|
||||||
** this and throw in a few assertions here and there. */
|
** this and throw in a few assertions here and there. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user