diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-06-02 14:13:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-06-03 00:11:59 +0200 |
commit | 5233de9ac66035ad3bc0d04dffd81fb50d58fb5b (patch) | |
tree | e88f9e6a75351ecfcf0ecf313a8ce4cf5ae69002 /src/tool_util.h | |
parent | cfd3e8f399c2bb2a7fdc51f01ddc12548b4f3892 (diff) | |
download | curl-5233de9ac66035ad3bc0d04dffd81fb50d58fb5b.tar.gz |
tool_util: remove unused tvdiff_secs and remove tool_ prefix
Closes #1532
Diffstat (limited to 'src/tool_util.h')
-rw-r--r-- | src/tool_util.h | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/src/tool_util.h b/src/tool_util.h index d5b3898ff..fda1e61bf 100644 --- a/src/tool_util.h +++ b/src/tool_util.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -23,7 +23,7 @@ ***************************************************************************/ #include "tool_setup.h" -struct timeval tool_tvnow(void); +struct timeval tvnow(void); /* * Make sure that the first argument (t1) is the more recent time and t2 is @@ -31,24 +31,7 @@ struct timeval tool_tvnow(void); * * Returns: the time difference in number of milliseconds. */ -long tool_tvdiff(struct timeval t1, struct timeval t2); - -/* - * Same as tool_tvdiff but with full usec resolution. - * - * Returns: the time difference in seconds with subsecond resolution. - */ -double tool_tvdiff_secs(struct timeval t1, struct timeval t2); - -long tool_tvlong(struct timeval t1); - -#undef tvnow -#undef tvdiff -#undef tvdiff_secs - -#define tvnow() tool_tvnow() -#define tvdiff(a,b) tool_tvdiff((a), (b)) -#define tvdiff_secs(a,b) tool_tvdiff_secs((a), (b)) +long tvdiff(struct timeval t1, struct timeval t2); #endif /* HEADER_CURL_TOOL_UTIL_H */ |