diff options
author | Andrei Zmievski <andrei@php.net> | 1999-10-15 20:42:26 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 1999-10-15 20:42:26 +0000 |
commit | c27966816848621fa708ab16b27428b44bdbdefc (patch) | |
tree | faf1ea9e39ece6ef48ac5b4d21103c4ff5692d78 /Zend/zend_operators.c | |
parent | e956a266e2c49cf5c752555636e2155b7a8e2b00 (diff) | |
download | php-git-c27966816848621fa708ab16b27428b44bdbdefc.tar.gz |
unstatic'fy is_numeric_string()
Diffstat (limited to 'Zend/zend_operators.c')
-rw-r--r-- | Zend/zend_operators.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 14bbb372cf..69570054e1 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -34,8 +34,6 @@ #include "functions/number.h" #endif -static inline int is_numeric_string(char *str, int length, long *lval, double *dval); - ZEND_API void convert_scalar_to_number(zval *op) { char *strval; @@ -1237,7 +1235,7 @@ ZEND_API void zendi_smart_strcmp(zval *result, zval *s1, zval *s2) */ #if 1 -static inline int is_numeric_string(char *str, int length, long *lval, double *dval) +ZEND_API inline int is_numeric_string(char *str, int length, long *lval, double *dval) { long local_lval; double local_dval; |