From: Nick Mathewson Date: Mon, 16 Dec 2019 18:06:00 +0000 (-0500) Subject: siphash.h: include stdint. X-Git-Tag: tor-0.4.3.1-alpha~40^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c4ac5adc4add3645e65fdaebbb3cf5a938137ebe;p=thirdparty%2Ftor.git siphash.h: include stdint. Doing this gives us a valid uint64_t type, freeing us from dependencies on include order. --- 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;