| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2009-06-22 13:43 UTC] [email protected]
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 07:00:01 2025 UTC | 
Description: ------------ date/php_date.c needs another inline for NetWare Metrowerks compiler: --- php_date.c.orig Sat Jun 06 00:34:30 2009 +++ php_date.c Mon Jun 22 02:44:27 2009 @@ -38,6 +38,10 @@ static __inline __int64_t llabs( __int64_t i ) { return i >= 0 ? i : -i; } #endif +#if defined(NETWARE) && defined(__MWERKS__) +static __inline long long llabs( long long i ) { return i >= 0 ? i : -i; } +#endif + /* {{{ arginfo */ static ZEND_BEGIN_ARG_INFO_EX(arginfo_date, 0, 0, 1)