From eea07a2f64f25fab7a29a01d1539c5f6dc2ad289 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 29 Jan 2004 09:00:30 -0500 Subject: ERR: Fixed prototypes of gmtime, localtime, and mktime. --- Source/CTest/Curl/getdate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/CTest/Curl/getdate.c b/Source/CTest/Curl/getdate.c index 45d1dcd..5ab79e3 100644 --- a/Source/CTest/Curl/getdate.c +++ b/Source/CTest/Curl/getdate.c @@ -1535,9 +1535,9 @@ yyerrhandle: #include "getdate.h" #ifndef WIN32 /* the windows dudes don't need these, does anyone really? */ -extern struct tm *gmtime (); -extern struct tm *localtime (); -extern time_t mktime (); +extern struct tm *gmtime (const time_t *timer); +extern struct tm *localtime (const time_t *timer); +extern time_t mktime (struct tm *timeptr); #endif /* Month and day table. */ -- cgit v0.12