diff options
author | George Peter Banyard <girgias@php.net> | 2020-04-22 20:18:19 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-04-22 20:18:19 +0200 |
commit | f91f72607b8101bfe9df3bf8327c99e9a1f21a00 (patch) | |
tree | cdbd86578a6709fa3c901747532d7cd8d3dcf890 /main/php_variables.c | |
parent | 657f756ccd79b0fd1268eb9796e371aa3f76c2a8 (diff) | |
download | php-git-f91f72607b8101bfe9df3bf8327c99e9a1f21a00.tar.gz |
Drop unnecessary stdint and inttypes header checks
These are always available as of C99.
Closes GH-5323
Co-authored-by: "Christoph M. Becker" <cmbecker69@gmx.de>
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index 6fb6ca000d..b41286312d 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -25,9 +25,6 @@ #include "php_content_types.h" #include "SAPI.h" #include "zend_globals.h" -#ifdef PHP_WIN32 -# include "win32/php_inttypes.h" -#endif /* for systems that need to override reading of environment variables */ void _php_import_environment_variables(zval *array_ptr); |