diff options
Diffstat (limited to 'ext/standard/php_string.h')
-rw-r--r-- | ext/standard/php_string.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/php_string.h b/ext/standard/php_string.h index 807ea2c5d6..7a2c5ecfb0 100644 --- a/ext/standard/php_string.h +++ b/ext/standard/php_string.h @@ -80,6 +80,12 @@ PHP_FUNCTION(substr_count); PHP_FUNCTION(str_pad); PHP_FUNCTION(sscanf); + +#if defined(HAVE_LOCALECONV) && defined(ZTS) +PHP_MINIT_FUNCTION(localeconv); +PHP_MSHUTDOWN_FUNCTION(localeconv); +#endif + #define strnatcmp(a, b) \ strnatcmp_ex(a, strlen(a), b, strlen(b), 0) #define strnatcasecmp(a, b) \ |