diff options
author | iDunk5400 <iDunk5400@users.noreply.github.com> | 2018-02-16 19:35:31 +0100 |
---|---|---|
committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2018-02-16 19:35:31 +0100 |
commit | ed6c68db1bbe44413b6d3cc63a75436b14e029a2 (patch) | |
tree | 0c9992900caa5f048d48cf715cdf28b9415a26d0 /src/crypto/random.c | |
parent | Merge pull request #3196 (diff) | |
download | monero-ed6c68db1bbe44413b6d3cc63a75436b14e029a2.tar.xz |
crypto: add missing include (WIN32)
Diffstat (limited to '')
-rw-r--r-- | src/crypto/random.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/crypto/random.c b/src/crypto/random.c index 929377943..9e1a70a2d 100644 --- a/src/crypto/random.c +++ b/src/crypto/random.c @@ -42,6 +42,7 @@ static void generate_system_random_bytes(size_t n, void *result); #include <windows.h> #include <wincrypt.h> +#include <stdio.h> static void generate_system_random_bytes(size_t n, void *result) { HCRYPTPROV prov; |