From c4ac5adc4add3645e65fdaebbb3cf5a938137ebe Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 16 Dec 2019 13:06:00 -0500 Subject: [PATCH] siphash.h: include stdint. Doing this gives us a valid uint64_t type, freeing us from dependencies on include order. --- src/ext/siphash.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ext/siphash.h b/src/ext/siphash.h index 730e49937d..0207a959ff 100644 --- a/src/ext/siphash.h +++ b/src/ext/siphash.h @@ -1,6 +1,8 @@ #ifndef SIPHASH_H #define SIPHASH_H +#include + struct sipkey { uint64_t k0; uint64_t k1;