[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-10-29 Thread Ilia Alshanetsky
iliaa Wed Oct 29 20:03:34 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c Log: Fixed bug #42294 (Unified solution for round() based on C99 round) [DOC] New implementation of round() to work-around inconsistencies for win32 and 64

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-05-08 Thread Matt Wilmas
Thank you Hannes. :-) - Matt - Original Message - From: "Hannes Magnusson" Sent: Thursday, May 08, 2008 > Congrats on your first commit \o/ > Looking forward to a bunch more :) > > -Hannes > > > On Thu, May 8, 2008 at 6:23 AM, Matt Wilmas <[EMAIL PROTECTED]> wrote: > > mattwil T

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-05-08 Thread Hannes Magnusson
Congrats on your first commit \o/ Looking forward to a bunch more :) -Hannes On Thu, May 8, 2008 at 6:23 AM, Matt Wilmas <[EMAIL PROTECTED]> wrote: > mattwil Thu May 8 04:23:26 2008 UTC > > Modified files: (Branch: PHP_5_3) > /php-src/ext/standard math.c > Log

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-05-07 Thread Matt Wilmas
mattwil Thu May 8 04:23:26 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c Log: Fix build http://cvs.php.net/viewvc.cgi/php-src/ext/standard/math.c?r1=1.131.2.2.2.6.2.7&r2=1.131.2.2.2.6.2.8&diff_format=u Index: php-src/ext/standard/

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-05-05 Thread Derick Rethans
derick Mon May 5 10:09:54 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c Log: - Fixed build. http://cvs.php.net/viewvc.cgi/php-src/ext/standard/math.c?r1=1.131.2.2.2.6.2.5&r2=1.131.2.2.2.6.2.6&diff_format=u Index: php-src/ext/s

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-02-21 Thread Felipe Pena
felipe Thu Feb 21 17:50:03 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c Log: New parameter parsing [DOC] http://cvs.php.net/viewvc.cgi/php-src/ext/standard/math.c?r1=1.131.2.2.2.6.2.3&r2=1.131.2.2.2.6.2.4&diff_format=u Index: php-

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c

2008-02-21 Thread Antony Dovgal
tony2001Thu Feb 21 11:53:35 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c Log: ws->tab fixes http://cvs.php.net/viewvc.cgi/php-src/ext/standard/math.c?r1=1.131.2.2.2.6.2.2&r2=1.131.2.2.2.6.2.3&diff_format=u Index: php-sr

Re: [PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c /ext/standard/tests/math exp_error.phpt

2008-02-12 Thread Nuno Lopes
@@ -471,14 +471,14 @@ Returns e raised to the power of the number */ PHP_FUNCTION(exp) { - zval **num; +double num; + +if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &num) == FAILURE) { +return; +} + +RETURN_DOUBLE(exp(num)); you h

[PHP-CVS] cvs: php-src(PHP_5_3) /ext/standard math.c /ext/standard/tests/math exp_error.phpt

2008-02-11 Thread Zoe Slattery
zoe Tue Feb 12 07:15:41 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/standard math.c /php-src/ext/standard/tests/mathexp_error.phpt Log: Fixing 44092 http://cvs.php.net/viewvc.cgi/php-src/ext/standard/math.c?r1=1.131.2.2.2.6.2.1&r2=1