diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-16 13:06:00 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-09 07:30:35 -0500 |
commit | c4ac5adc4add3645e65fdaebbb3cf5a938137ebe (patch) | |
tree | 9f2e033d76c39589ce57eb420b5269df26c97850 /src/ext | |
parent | 6a6486a7bf327753b5bd84f4f2c113e331e41c1f (diff) | |
download | tor-c4ac5adc4add3645e65fdaebbb3cf5a938137ebe.tar.gz tor-c4ac5adc4add3645e65fdaebbb3cf5a938137ebe.zip |
siphash.h: include stdint.
Doing this gives us a valid uint64_t type, freeing us from
dependencies on include order.
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/siphash.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 <stdint.h> + struct sipkey { uint64_t k0; uint64_t k1; |