diff options
Diffstat (limited to 'lib/timeval.h')
-rw-r--r-- | lib/timeval.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/timeval.h b/lib/timeval.h index a37852598..84ab79601 100644 --- a/lib/timeval.h +++ b/lib/timeval.h @@ -43,7 +43,10 @@ struct timeval { #endif struct timeval Curl_tvnow (); -double Curl_tvdiff (struct timeval t1, struct timeval t2); + +/* the diff is from now on returned in number of milliseconds! */ +long Curl_tvdiff (struct timeval t1, struct timeval t2); + long Curl_tvlong (struct timeval t1); #endif |