MFB: Fixed bug #48636 (Error compiling of ext/date on netware).

This commit is contained in:
Ilia Alshanetsky 2009-06-22 13:43:06 +00:00
parent 9242550823
commit 8a5511cfc8

View File

@ -36,6 +36,10 @@
# include "win32/php_stdint.h"
#endif
#if defined(NETWARE) && defined(__MWERKS__)
static __inline long long llabs( long long i ) { return i >= 0 ? i : -i; }
#endif
/* {{{ arginfo */
ZEND_BEGIN_ARG_INFO_EX(arginfo_date, 0, 0, 1)
ZEND_ARG_INFO(0, format)