diff options
author | George Kadianakis <desnacked@riseup.net> | 2018-12-07 16:35:23 +0200 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2019-01-02 15:25:55 +0200 |
commit | 926fc93be5b6afab1a604ecd7c79aa6e8ae8a676 (patch) | |
tree | ad9b0bd2298f8035734d777f42b1333fb5cf990d /src/test/test_util.c | |
parent | dd04917851c23f16a11c0d2b0c62ea76c93c4c7d (diff) | |
download | tor-926fc93be5b6afab1a604ecd7c79aa6e8ae8a676.tar.gz tor-926fc93be5b6afab1a604ecd7c79aa6e8ae8a676.zip |
Concentrate all TOR_USEC_PER_SEC definitions in a single header file.
Co-authored-by: Mike Perry <mikeperry-git@torproject.org>
Diffstat (limited to 'src/test/test_util.c')
-rw-r--r-- | src/test/test_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_util.c b/src/test/test_util.c index b983cbb0bf..bf64cff7ef 100644 --- a/src/test/test_util.c +++ b/src/test/test_util.c @@ -19,6 +19,7 @@ #include "feature/client/transports.h" #include "lib/crypt_ops/crypto_format.h" #include "lib/crypt_ops/crypto_rand.h" +#include "lib/defs/time.h" #include "test/test.h" #include "lib/memarea/memarea.h" #include "lib/process/waitpid.h" @@ -404,7 +405,6 @@ test_util_time(void *arg) /* Assume tv_usec is an unsigned integer until proven otherwise */ #define TV_USEC_MAX UINT_MAX -#define TOR_USEC_PER_SEC 1000000 /* Overflows in the result type */ |