diff options
Diffstat (limited to 'ext/date')
-rw-r--r-- | ext/date/php_date.c | 2 | ||||
-rw-r--r-- | ext/date/php_date.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index dfe49d2ab4..d3fa0ddd41 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -60,7 +60,7 @@ static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; #endif #endif -static time_t php_time() +PHPAPI time_t php_time() { #ifdef HAVE_GETTIMEOFDAY struct timeval tm; diff --git a/ext/date/php_date.h b/ext/date/php_date.h index 691521dfa6..00e2c385f2 100644 --- a/ext/date/php_date.h +++ b/ext/date/php_date.h @@ -204,6 +204,8 @@ ZEND_END_MODULE_GLOBALS(date) #define DATEG(v) ZEND_MODULE_GLOBALS_ACCESSOR(date, v) +PHPAPI time_t php_time(); + /* Backwards compatibility wrapper */ PHPAPI zend_long php_parse_date(char *string, zend_long *now); PHPAPI void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gmt); |