From 5ff7d165f9d68c5da4fe05669f52c1c4eb4462fd Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Tue, 16 Jan 2018 12:49:08 -0800 Subject: [PATCH] Add missing header files in siphash.c, fix #301 --- third_party/siphash.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/third_party/siphash.h b/third_party/siphash.h index 8caab4a7..1d735af6 100644 --- a/third_party/siphash.h +++ b/third_party/siphash.h @@ -1,4 +1,7 @@ #pragma once +#include +#include + int siphash(const uint8_t *in, const size_t inlen, const uint8_t *k, - uint8_t *out, const size_t outlen); \ No newline at end of file + uint8_t *out, const size_t outlen);