diff options
| author | Sascha Schumann <sas@php.net> | 2000-08-21 09:50:53 +0000 |
|---|---|---|
| committer | Sascha Schumann <sas@php.net> | 2000-08-21 09:50:53 +0000 |
| commit | 8e0ae5d1524dd020e18d19b2e25e19f47ef94da5 (patch) | |
| tree | 06b3397e1aaa0318e8fc887f38e28f36cdb05f85 /ext/standard/datetime.c | |
| parent | 1bbea8d0eb692df29afd1032d4046c4a12040ef6 (diff) | |
| download | php-git-8e0ae5d1524dd020e18d19b2e25e19f47ef94da5.tar.gz | |
Cleaning up some mess
Diffstat (limited to 'ext/standard/datetime.c')
| -rw-r--r-- | ext/standard/datetime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index 61416c0dd6..c98fd2ead7 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -33,6 +33,8 @@ #endif #include <stdio.h> +#include "php_parsedate.h" + char *mon_full_names[] = { "January", "February", "March", "April", @@ -65,8 +67,6 @@ static int phpday_tab[2][12] = #define isleap(year) (((year%4) == 0 && (year%100)!=0) || (year%400)==0) -extern PHPAPI time_t parse_date (const char *p, const time_t *now); - /* {{{ proto int time(void) Return current UNIX timestamp */ PHP_FUNCTION(time) |
