summaryrefslogtreecommitdiff
path: root/ext/standard/php_parsedate.h
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2000-08-23 10:54:13 +0000
committerStanislav Malyshev <stas@php.net>2000-08-23 10:54:13 +0000
commitb28f6eba383760a9883b3906ecfc442e0478066b (patch)
tree890d38ac67c3e99e3c2fbba5dccf2f3ec7c65471 /ext/standard/php_parsedate.h
parent2604cb987ac32d4d30f21e39647706e8357f2ed3 (diff)
downloadphp-git-b28f6eba383760a9883b3906ecfc442e0478066b.tar.gz
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
Diffstat (limited to 'ext/standard/php_parsedate.h')
-rw-r--r--ext/standard/php_parsedate.h2
1 files changed, 1 insertions, 1 deletions
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.h>
-time_t parse_date(const char *p, const time_t *now);
+time_t parse_date(char *p, time_t *now);
#endif