tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit c4ac5adc4add3645e65fdaebbb3cf5a938137ebe
parent 6a6486a7bf327753b5bd84f4f2c113e331e41c1f
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 16 Dec 2019 13:06:00 -0500

siphash.h: include stdint.

Doing this gives us a valid uint64_t type, freeing us from
dependencies on include order.

Diffstat:
Msrc/ext/siphash.h | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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;