From: Stanislav Malyshev Date: Wed, 23 Aug 2000 10:54:13 +0000 (+0000) Subject: Make parsedate build again X-Git-Tag: php-4.0.2~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b28f6eba383760a9883b3906ecfc442e0478066b;p=php Make parsedate build again # I do not really know what's the problem with const, but I do know # it doesn't compile when declaration and definition don't match --- diff --git a/ext/standard/php_parsedate.h b/ext/standard/php_parsedate.h index 0e171768a9..63d61863cc 100644 --- a/ext/standard/php_parsedate.h +++ b/ext/standard/php_parsedate.h @@ -21,6 +21,6 @@ #include -time_t parse_date(const char *p, const time_t *now); +time_t parse_date(char *p, time_t *now); #endif