diff options
author | Zeev Suraski <zeev@php.net> | 2000-06-17 16:49:03 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-06-17 16:49:03 +0000 |
commit | da662986592131d30d4813e178c72c1d9653e644 (patch) | |
tree | dccb4509b7b35002b3c8e465b44855ab96a19668 /ext/standard/parsedate.y | |
parent | eb6f625d830f1797c0af7027a1f9c48e3d7e74b9 (diff) | |
download | php-git-da662986592131d30d4813e178c72c1d9653e644.tar.gz |
- Fix a couple of wranings in the FTP code and in parsedate.y
- Be safer with LC_MESSAGES
- Align with the latest Zend change in call_user_function_ex()
Diffstat (limited to 'ext/standard/parsedate.y')
-rw-r--r-- | ext/standard/parsedate.y | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/standard/parsedate.y b/ext/standard/parsedate.y index d92eccd1e2..b66021e947 100644 --- a/ext/standard/parsedate.y +++ b/ext/standard/parsedate.y @@ -452,9 +452,11 @@ o_merid : /* NULL */ time_t get_date (const char *p, const time_t *now); -extern struct tm *gmtime (); -extern struct tm *localtime (); -extern time_t mktime (); +#ifndef PHP_WIN32 +extern struct tm *gmtime(); +extern struct tm *localtime(); +extern time_t mktime(); +#endif /* Month and day table. */ static TABLE const MonthDayTable[] = { |