summaryrefslogtreecommitdiff
path: root/ext/standard/php_math.h
diff options
context:
space:
mode:
authorjim winstead <jimw@php.net>2002-01-09 23:59:05 +0000
committerjim winstead <jimw@php.net>2002-01-09 23:59:05 +0000
commit831473d76ef3f052701f96d5c5739c97d0f2462d (patch)
treeb3e1d3f0d7545abd83aec4f9ed318d982150ca5e /ext/standard/php_math.h
parente68095972ea476731a485410b72d39088b69f643 (diff)
downloadphp-git-831473d76ef3f052701f96d5c5739c97d0f2462d.tar.gz
Rename finite/isinf/isnan to more standard is_*() names.
Diffstat (limited to 'ext/standard/php_math.h')
-rw-r--r--ext/standard/php_math.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/php_math.h b/ext/standard/php_math.h
index 71d9b6d88e..496ccf1b80 100644
--- a/ext/standard/php_math.h
+++ b/ext/standard/php_math.h
@@ -35,9 +35,9 @@ PHP_FUNCTION(pi);
PHP_FUNCTION(exp);
PHP_FUNCTION(log);
PHP_FUNCTION(log10);
-PHP_FUNCTION(finite);
-PHP_FUNCTION(isinf);
-PHP_FUNCTION(isnan);
+PHP_FUNCTION(is_finite);
+PHP_FUNCTION(is_infinite);
+PHP_FUNCTION(is_nan);
PHP_FUNCTION(pow);
PHP_FUNCTION(sqrt);
PHP_FUNCTION(srand);