@@ -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 have spaces there instead of tabs.
Nuno
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to