From b28f6eba383760a9883b3906ecfc442e0478066b Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Wed, 23 Aug 2000 10:54:13 +0000 Subject: [PATCH] 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 --- ext/standard/php_parsedate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.40.0