initial load of upstream version 1.06.32
[xmlrpc-c] / include / xmlrpc-c / util_int.h
1 #ifndef XMLRPC_C_UTIL_INT_H_INCLUDED
2 #define XMLRPC_C_UTIL_INT_H_INCLUDED
3
4 #include "util.h"
5
6 #define MIN(a,b) ((a) < (b) ? (a) : (b))
7 #define MAX(a,b) ((a) > (b) ? (a) : (b))
8
9 /* When we deallocate a pointer in a struct, we often replace it with
10 ** this and throw in a few assertions here and there. */
11 #define XMLRPC_BAD_POINTER ((void*) 0xDEADBEEF)
12
13 #endif