aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/random.c
diff options
context:
space:
mode:
authoriDunk5400 <iDunk5400@users.noreply.github.com>2018-02-16 19:35:31 +0100
committeriDunk5400 <iDunk5400@users.noreply.github.com>2018-02-16 19:35:31 +0100
commited6c68db1bbe44413b6d3cc63a75436b14e029a2 (patch)
tree0c9992900caa5f048d48cf715cdf28b9415a26d0 /src/crypto/random.c
parentMerge pull request #3196 (diff)
downloadmonero-ed6c68db1bbe44413b6d3cc63a75436b14e029a2.tar.xz
crypto: add missing include (WIN32)
Diffstat (limited to '')
-rw-r--r--src/crypto/random.c1
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;