diff options
author | Thies C. Arntzen <thies@php.net> | 2000-06-06 14:13:35 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-06-06 14:13:35 +0000 |
commit | 11fabacc3c998456e334be142d558a0f0274bc65 (patch) | |
tree | 64d35e2dab7f3ad88f6aa73e5664f473e1a879b2 /ext/recode/recode.c | |
parent | 0e0f3eb0978b9a181a43363cbb251d02c05c2cc7 (diff) | |
download | php-git-11fabacc3c998456e334be142d558a0f0274bc65.tar.gz |
add check for stdbool.h
Diffstat (limited to 'ext/recode/recode.c')
-rw-r--r-- | ext/recode/recode.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/recode/recode.c b/ext/recode/recode.c index 5b63d37a51..e1ed131ec4 100644 --- a/ext/recode/recode.c +++ b/ext/recode/recode.c @@ -29,6 +29,7 @@ #include "ext/standard/php_string.h" #include "zend_list.h" + #ifdef HAVE_BROKEN_RECODE extern char *program_name; char *program_name = "php"; @@ -110,7 +111,7 @@ PHP_FUNCTION(recode_string) char *r = NULL; pval **str; pval **req; - int success; + bool success; ReSLS_FETCH(); if (ZEND_NUM_ARGS() != 2 |