diff options
author | Zeev Suraski <zeev@php.net> | 2001-01-15 10:48:48 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-01-15 10:48:48 +0000 |
commit | 0592feb2a1df51b8d35b20812f54012c60ee1f30 (patch) | |
tree | fb88ce23b5f81c8e6060668d31b1bc9b3f410193 /ext/standard/php_string.h | |
parent | 90c8e2cf751038b0b8970ba9ea0ec201e3ae4cf6 (diff) | |
download | php-git-0592feb2a1df51b8d35b20812f54012c60ee1f30.tar.gz |
Nuke a couple of warnings
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) \ |