diff options
author | Sam Ruby <rubys@php.net> | 1999-12-21 02:34:20 +0000 |
---|---|---|
committer | Sam Ruby <rubys@php.net> | 1999-12-21 02:34:20 +0000 |
commit | 8a34d1a7e0d2cf650653e3689ee6cbdca3baf625 (patch) | |
tree | 1a304af267ea088284ddc2b7489f72d043216512 /ext | |
parent | 931bbca113924d498ec6fb43ed9e3fb844a64d5c (diff) | |
download | php-git-8a34d1a7e0d2cf650653e3689ee6cbdca3baf625.tar.gz |
Further cleanup as including php.h is no longer harmful
- thanks to Sascha for noticing it.
Tested on Linux and WinNT, should work everywhere.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/parsedate.y | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ext/standard/parsedate.y b/ext/standard/parsedate.y index 60245f6c69..393207da09 100644 --- a/ext/standard/parsedate.y +++ b/ext/standard/parsedate.y @@ -19,11 +19,7 @@ /* SUPPRESS 595 on yypvt *//* Automatic variable may be used before set */ -#ifdef WIN32 -# include "config.w32.h" -#else -# include "php_config.h" -#endif +#include "php.h" #if WIN32||WINNT #include <malloc.h> @@ -52,7 +48,6 @@ #if WIN32||WINNT # include <time.h> -# include "php_reentrancy.h" #else # if !defined(HAVE_TM_ZONE) && !defined(_TIMEZONE) extern time_t timezone; |