}
/* }}} */
+
+#ifndef PHP_WIN32
/* {{{ proto double asinh(double number)
Returns the inverse hyperbolic sine of the number,
i.e. the value whose hyperbolic sine is number */
}
/* }}} */
+#endif
/* {{{ proto double pi(void)
Returns an approximation of pi */
}
/* }}} */
+
+#ifndef PHP_WIN32
/* {{{ proto double expm1(double number)
Returns exp(number) - 1, computed in a way that accurate even when
the value of number is close to zero */
}
/* }}} */
+
+#endif
/* {{{ proto double log(double number)
Returns the natural logarithm of the number */
}
/* }}} */
+
+#ifndef PHP_WIN32
/* {{{ proto double cbrt(double number)
Returns the cubic root of the number */
}
/* }}} */
+#endif
+
/* {{{ proto double hypot(double num1, double num2)
Returns sqrt( num1*num1 + num2*num2) */