diff options
author | Daniel Beulshausen <dbeu@php.net> | 2001-03-15 20:45:49 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2001-03-15 20:45:49 +0000 |
commit | 0688feeba4d33d6d02b4038f6b68aaff11e9f770 (patch) | |
tree | 7d497a3f40b4cb84b3897a3419a565ae26a6383f | |
parent | baa92cc540c9baf614cc15aeab99c8303b554cc9 (diff) | |
download | php-git-0688feeba4d33d6d02b4038f6b68aaff11e9f770.tar.gz |
fix win32 build
-rw-r--r-- | ext/iconv/iconv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/iconv/iconv.c b/ext/iconv/iconv.c index 8b68cd474f..f688e4a826 100644 --- a/ext/iconv/iconv.c +++ b/ext/iconv/iconv.c @@ -19,7 +19,6 @@ #include "php.h" #include "php_ini.h" -#include "php_config.h" #if HAVE_ICONV @@ -178,6 +177,7 @@ PHP_FUNCTION(ob_iconv_handler) int coding; char *out_buffer; zval **zv_string; + SLS_FETCH(); ICONVLS_FETCH(); if (ZEND_NUM_ARGS()!=1 || zend_get_parameters_ex(1, &zv_string)==FAILURE) { |