diff options
author | Anatol Belski <ab@php.net> | 2015-08-25 11:58:13 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2015-08-26 16:39:45 +0200 |
commit | c867b510df2a2f746ae2ec60116b5b4f463abd83 (patch) | |
tree | 7053795ee6180fd6b21470b332eee9b308d1b900 | |
parent | e2ce37be6a94ec3309a796930af5d93273b49923 (diff) | |
download | php-git-c867b510df2a2f746ae2ec60116b5b4f463abd83.tar.gz |
include range checks with the portability header
-rw-r--r-- | Zend/zend_portability.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_portability.h b/Zend/zend_portability.h index 2736bf4440..ffa0d86907 100644 --- a/Zend/zend_portability.h +++ b/Zend/zend_portability.h @@ -78,6 +78,8 @@ #include <intrin.h> #endif +#include "zend_range_check.h" + /* GCC x.y.z supplies __GNUC__ = x and __GNUC_MINOR__ = y */ #ifdef __GNUC__ # define ZEND_GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__) |