aboutsummaryrefslogtreecommitdiff
path: root/src/ext/csiphash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/csiphash.c')
-rw-r--r--src/ext/csiphash.c6
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))) )