From 2c9ee1a8bb3da64e8496d735ebdf56d6c63ad87c Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Fri, 17 Mar 2017 11:34:30 -0600 Subject: [PATCH] Add stdint include. --- include/librustzcash.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/librustzcash.h b/include/librustzcash.h index 21e7464..ec02991 100644 --- a/include/librustzcash.h +++ b/include/librustzcash.h @@ -1,6 +1,8 @@ #ifndef LIBRUSTZCASH_INCLUDE_H_ #define LIBRUSTZCASH_INCLUDE_H_ +#include + extern "C" { uint64_t librustzcash_xor(uint64_t a, uint64_t b); }