diff options
author | Derick Rethans <derick@php.net> | 2004-11-03 23:36:51 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2004-11-03 23:36:51 +0000 |
commit | 59651c4e58015047acfbce1016a58105976d32f6 (patch) | |
tree | 16080a9cccc84323214c9d764edd524873494451 /ext/standard/php_string.h | |
parent | dbf2c8abd5e85c8fafad4e468819dd67b4e37e4c (diff) | |
download | php-git-59651c4e58015047acfbce1016a58105976d32f6.tar.gz |
- Fixed bug #30630: Added a BSD based strtod function that is
locale-independent. (PHP part)
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 3097d4f114..9eddc44055 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -112,7 +112,7 @@ PHP_MINIT_FUNCTION(nl_langinfo); PHPAPI int strnatcmp_ex(char const *a, size_t a_len, char const *b, size_t b_len, int fold_case); #ifdef HAVE_LOCALECONV -struct lconv *localeconv_r(struct lconv *out); +PHPAPI struct lconv *localeconv_r(struct lconv *out); #endif PHPAPI char *php_strtoupper(char *s, size_t len); |