diff options
author | Nikita Popov <nikic@php.net> | 2014-09-20 22:42:02 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-09-21 20:49:39 +0200 |
commit | e33f3d3b7c9a69fe069484045a27d282aa98b00e (patch) | |
tree | 90e1513cf7384f8b80c5278601ba3ed1d20c9636 /sapi/cli/php_cli_server.c | |
parent | e1fe5cb8c2ba47581c079d2b91e2fede29181dfe (diff) | |
download | php-git-e33f3d3b7c9a69fe069484045a27d282aa98b00e.tar.gz |
Move smart_str implementation into Zend/
So we can use it there as well...
For now I've retained the zend_smart_str_public.h header, though
it would probably be better to just move that one struct into
zend_types.h.
Diffstat (limited to 'sapi/cli/php_cli_server.c')
-rw-r--r-- | sapi/cli/php_cli_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/cli/php_cli_server.c b/sapi/cli/php_cli_server.c index b2defe0841..909e91e3fa 100644 --- a/sapi/cli/php_cli_server.c +++ b/sapi/cli/php_cli_server.c @@ -96,7 +96,7 @@ #endif #include "ext/standard/file.h" /* for php_set_sock_blocking() :-( */ -#include "ext/standard/php_smart_str.h" +#include "zend_smart_str.h" #include "ext/standard/html.h" #include "ext/standard/url.h" /* for php_url_decode() */ #include "ext/standard/php_string.h" /* for php_dirname() */ |