diff options
author | Reeze Xia <reeze@php.net> | 2015-02-10 22:30:54 +0800 |
---|---|---|
committer | Reeze Xia <reeze@php.net> | 2015-02-10 22:30:54 +0800 |
commit | 6c9d75b44d559f9d35fba01b1f6eb16aef4c23b1 (patch) | |
tree | c92d272be0438c1f15574fea769b765a9cecaa4b /sapi/phpdbg | |
parent | 94602028f0ee65e0cc072b114098ea31a4cd7507 (diff) | |
download | php-git-6c9d75b44d559f9d35fba01b1f6eb16aef4c23b1.tar.gz |
Add missing header inclusion
Diffstat (limited to 'sapi/phpdbg')
-rw-r--r-- | sapi/phpdbg/phpdbg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c index f2f18b944e..3337f05cdc 100644 --- a/sapi/phpdbg/phpdbg.c +++ b/sapi/phpdbg/phpdbg.c @@ -21,6 +21,7 @@ #if !defined(ZEND_SIGNALS) || defined(_WIN32) # include <signal.h> #endif + #include "phpdbg.h" #include "phpdbg_prompt.h" #include "phpdbg_bp.h" @@ -32,6 +33,8 @@ #include "zend_alloc.h" #include "phpdbg_eol.h" +#include "ext/standard/basic_functions.h" + /* {{{ remote console headers */ #ifndef _WIN32 # include <sys/socket.h> |