diff options
| author | jvoisin | 2019-02-23 19:36:24 +0100 |
|---|---|---|
| committer | jvoisin | 2019-02-23 19:36:24 +0100 |
| commit | 809920b8cb130e105847a9956c51a6ecb08e2938 (patch) | |
| tree | 254fa43e3206f6d7df3896503473cdd038d372a8 /src/php_snuffleupagus.h | |
| parent | d03c3c8d01f6f507bf844fec07477f30e3db61d9 (diff) | |
Try to unify the includes
Diffstat (limited to 'src/php_snuffleupagus.h')
| -rw-r--r-- | src/php_snuffleupagus.h | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h index e7b5dc1..9da93ce 100644 --- a/src/php_snuffleupagus.h +++ b/src/php_snuffleupagus.h | |||
| @@ -7,23 +7,39 @@ | |||
| 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus" | 7 | #define PHP_SNUFFLEUPAGUS_URL "https://github.com/nbs-system/snuffleupagus" |
| 8 | #define PHP_SNUFFLEUPAGUS_COPYRIGHT "LGPLv2" | 8 | #define PHP_SNUFFLEUPAGUS_COPYRIGHT "LGPLv2" |
| 9 | 9 | ||
| 10 | #include <errno.h> | ||
| 11 | #include <fcntl.h> | ||
| 12 | #include <inttypes.h> | ||
| 13 | #include <pcre.h> | ||
| 10 | #include <stdbool.h> | 14 | #include <stdbool.h> |
| 11 | #include <stdio.h> | 15 | #include <stdio.h> |
| 16 | #include <stdlib.h> | ||
| 17 | #include <string.h> | ||
| 18 | #include <unistd.h> | ||
| 12 | 19 | ||
| 13 | #include <pcre.h> | 20 | #include <arpa/inet.h> |
| 21 | #include <netinet/in.h> | ||
| 22 | #include <sys/socket.h> | ||
| 14 | #include <sys/types.h> | 23 | #include <sys/types.h> |
| 15 | #include <sys/wait.h> | 24 | #include <sys/wait.h> |
| 16 | 25 | ||
| 17 | #include "SAPI.h" | 26 | #include "SAPI.h" |
| 27 | #include "ext/session/php_session.h" | ||
| 28 | #include "ext/standard/head.h" | ||
| 18 | #include "ext/standard/info.h" | 29 | #include "ext/standard/info.h" |
| 30 | #include "ext/standard/url.h" | ||
| 19 | #include "ext/standard/php_var.h" | 31 | #include "ext/standard/php_var.h" |
| 20 | #include "ext/pcre/php_pcre.h" | 32 | #include "ext/pcre/php_pcre.h" |
| 21 | #include "ext/session/php_session.h" | 33 | #include "ext/session/php_session.h" |
| 22 | #include "php.h" | 34 | #include "php.h" |
| 23 | #include "php_ini.h" | 35 | #include "php_ini.h" |
| 36 | #include "rfc1867.h" | ||
| 37 | #include "zend_execute.h" | ||
| 38 | #include "zend_extensions.h" | ||
| 24 | #include "zend_hash.h" | 39 | #include "zend_hash.h" |
| 25 | #include "zend_string.h" | 40 | #include "zend_string.h" |
| 26 | #include "zend_extensions.h" | 41 | #include "zend_types.h" |
| 42 | #include "zend_vm.h" | ||
| 27 | 43 | ||
| 28 | /* Compatibility */ | 44 | /* Compatibility */ |
| 29 | #if ( !HAVE_PCRE && !HAVE_BUNDLED_PCRE ) | 45 | #if ( !HAVE_PCRE && !HAVE_BUNDLED_PCRE ) |
