1
0
Fork 0

fix undefined symnbol max

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@213 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
1.2
Xuefer 17 years ago
parent c9591dbe5b
commit 4537ab156d

@ -8,6 +8,10 @@
#undef NDEBUG
#include "assert.h"
#ifndef max
#define max(a, b) ((a) < (b) ? (b) : (a))
#endif
#ifndef ZEND_VM_SET_OPCODE_HANDLER
# define ZEND_VM_SET_OPCODE_HANDLER(opline) do { } while (0)
#endif

@ -66,10 +66,6 @@
} \
} while(0)
#ifndef max
#define max(a, b) ((a) < (b) ? (b) : (a))
#endif
/* }}} */
/* {{{ globals */

Loading…
Cancel
Save