diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-29 11:13:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-29 12:21:52 -0400 |
commit | 714788b19549ad2a1d8c064bc74678605b0aa78e (patch) | |
tree | 74891f3e4ec9c4d55d2b0d38b176aedd56c57784 /src/ext | |
parent | 71e56c70e9dd6aa47ad8c8fb7568a7c27144d95e (diff) | |
download | tor-714788b19549ad2a1d8c064bc74678605b0aa78e.tar.gz tor-714788b19549ad2a1d8c064bc74678605b0aa78e.zip |
Remove non-windows system includes from compat.h and util.h
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/csiphash.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/csiphash.c b/src/ext/csiphash.c index f82e10b103..a6a9846db4 100644 --- a/src/ext/csiphash.c +++ b/src/ext/csiphash.c @@ -30,11 +30,11 @@ */ #include "lib/cc/torint.h" +#include "lib/log/util_bug.h" + #include "siphash.h" -/* for tor_assert */ -#include "common/util.h" -/* for memcpy */ #include <string.h> +#include <stdlib.h> #include "byteorder.h" #define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) ) |