diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-07 11:12:41 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-07 11:12:41 +0200 |
commit | 85b5dc4711f6ce8b979ed60e3b60cf93225be32a (patch) | |
tree | d1472d494a4c61677a46d8f192ade81a2ba60eb9 /ext/curl/share.c | |
parent | d1ac7e3ab1bf3cf639ddbd63ed3824e8bb9fc32f (diff) | |
download | php-git-85b5dc4711f6ce8b979ed60e3b60cf93225be32a.tar.gz |
Private/public split curl header
To allow exporting the php_curl.h header containing curl class
entries, split off a separate curl_private.h header with all the
implementation details.
We may move or expose additional APIs in php_curl.h on an as-needed
basis.
Diffstat (limited to 'ext/curl/share.c')
-rw-r--r-- | ext/curl/share.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/share.c b/ext/curl/share.c index d7eb7be56a..58135acdb5 100644 --- a/ext/curl/share.c +++ b/ext/curl/share.c @@ -23,7 +23,7 @@ #include "php.h" #include "Zend/zend_interfaces.h" -#include "php_curl.h" +#include "curl_private.h" #include <curl/curl.h> |