diff options
Diffstat (limited to 'ext/date/php_date.c')
-rw-r--r-- | ext/date/php_date.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index e71699ecbf..32c22cfd1b 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -58,7 +58,7 @@ static inline long long php_date_llabs( long long i ) { return i >= 0 ? i : -i; #endif #endif -PHPAPI time_t php_time() +PHPAPI time_t php_time(void) { #ifdef HAVE_GETTIMEOFDAY struct timeval tm; |