diff options
-rw-r--r-- | ext/bcmath/libbcmath/src/bcmath.h | 4 | ||||
-rw-r--r-- | ext/bcmath/libbcmath/src/config.h | 2 | ||||
-rw-r--r-- | ext/ovrimos/ovrimos.c | 7 | ||||
-rw-r--r-- | ext/standard/flock_compat.c | 2 | ||||
-rw-r--r-- | win32/glob.c | 2 | ||||
-rw-r--r-- | win32/time.h | 2 | ||||
-rw-r--r-- | win32/winutil.c | 2 |
7 files changed, 11 insertions, 10 deletions
diff --git a/ext/bcmath/libbcmath/src/bcmath.h b/ext/bcmath/libbcmath/src/bcmath.h index 6833ce4bcf..1914d0bcdf 100644 --- a/ext/bcmath/libbcmath/src/bcmath.h +++ b/ext/bcmath/libbcmath/src/bcmath.h @@ -52,8 +52,8 @@ typedef struct bc_struct in the case of leading zeros generated. */ } bc_struct; -#include <php.h> -#include <ext/bcmath/php_bcmath.h> +#include "php.h" +#include "ext/bcmath/php_bcmath.h" /* The base used in storing the numbers in n_value above. diff --git a/ext/bcmath/libbcmath/src/config.h b/ext/bcmath/libbcmath/src/config.h index a70ba5e52d..89e3e43b69 100644 --- a/ext/bcmath/libbcmath/src/config.h +++ b/ext/bcmath/libbcmath/src/config.h @@ -6,7 +6,7 @@ #include "php_config.h" #endif -#include <php.h> +#include "php.h" #include <string.h> #include "zend.h" #include "zend_alloc.h" diff --git a/ext/ovrimos/ovrimos.c b/ext/ovrimos/ovrimos.c index 8224a79c9f..e34cd155c9 100644 --- a/ext/ovrimos/ovrimos.c +++ b/ext/ovrimos/ovrimos.c @@ -21,11 +21,12 @@ /* $Id$ */ -#include <php.h> -#include <php_globals.h> -#include <zend_API.h> +#include "php.h" +#include "php_globals.h" +#include "zend_API.h" #include "ext/standard/php_standard.h" #include "ext/standard/info.h" + #include <sqlcli.h> /* ovrimos header */ diff --git a/ext/standard/flock_compat.c b/ext/standard/flock_compat.c index bfeb0b8309..ea9d518a29 100644 --- a/ext/standard/flock_compat.c +++ b/ext/standard/flock_compat.c @@ -18,7 +18,7 @@ /* $Id$ */ -#include <php.h> +#include "php.h" #include <errno.h> #include "ext/standard/flock_compat.h" diff --git a/win32/glob.c b/win32/glob.c index f9011536ad..c6a29e1c9c 100644 --- a/win32/glob.c +++ b/win32/glob.c @@ -72,7 +72,7 @@ #endif #endif -#include <php.h> +#include "php.h" #include <sys/stat.h> #include <ctype.h> diff --git a/win32/time.h b/win32/time.h index 4d6c8a2bc2..8ba57d7ffa 100644 --- a/win32/time.h +++ b/win32/time.h @@ -15,7 +15,7 @@ /* Include stuff ************************************************************ */ #include <winsock2.h> #include <time.h> -#include <php.h> +#include "php.h" /* Struct stuff ************************************************************* */ struct timezone { diff --git a/win32/winutil.c b/win32/winutil.c index d4a21ce6ba..2f1a0f9cfd 100644 --- a/win32/winutil.c +++ b/win32/winutil.c @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -#include <php.h> +#include "php.h" PHPAPI char *php_win_err(int error) { |