mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8707 d0543943-73ff-0310-b7d9-9358b9ac24b2
18 lines
398 B
C
18 lines
398 B
C
#ifndef XMLRPC_C_UTIL_INT_H_INCLUDED
|
|
#define XMLRPC_C_UTIL_INT_H_INCLUDED
|
|
|
|
#include "util.h"
|
|
|
|
#ifndef MIN
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
#endif
|
|
#ifndef MAX
|
|
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
|
#endif
|
|
|
|
/* When we deallocate a pointer in a struct, we often replace it with
|
|
** this and throw in a few assertions here and there. */
|
|
#define XMLRPC_BAD_POINTER ((void*) 0xDEADBEEF)
|
|
|
|
#endif
|