diff options
Diffstat (limited to 'src/os/win32/ngx_time.h')
-rw-r--r-- | src/os/win32/ngx_time.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/win32/ngx_time.h b/src/os/win32/ngx_time.h index 4c1498407..225c38cf0 100644 --- a/src/os/win32/ngx_time.h +++ b/src/os/win32/ngx_time.h @@ -40,8 +40,8 @@ typedef FILETIME ngx_mtime_t; #define NGX_HAVE_GETTIMEZONE 1 ngx_int_t ngx_gettimezone(void); -void ngx_libc_localtime(struct tm *tm); -void ngx_libc_gmtime(struct tm *tm); +void ngx_libc_localtime(time_t s, struct tm *tm); +void ngx_libc_gmtime(time_t s, struct tm *tm); void ngx_gettimeofday(struct timeval *tp); |