aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-02-17 11:54:40 +0100
committerRiccardo Spagni <ric@spagni.net>2018-02-17 11:54:40 +0100
commit5aa50a45044734ab66ac26f008691c32d70d642b (patch)
treea2e3638162d8b3b9192521821667c272b6e63013
parentMerge pull request #3170 (diff)
parentmemwipe: add missing #include <stdio.h> (diff)
downloadmonero-5aa50a45044734ab66ac26f008691c32d70d642b.tar.xz
Merge pull request #3274
dfabc005 memwipe: add missing #include <stdio.h> (stoffu)
-rw-r--r--contrib/epee/src/memwipe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/epee/src/memwipe.c b/contrib/epee/src/memwipe.c
index 9a83e67e8..e3a2f76c8 100644
--- a/contrib/epee/src/memwipe.c
+++ b/contrib/epee/src/memwipe.c
@@ -31,6 +31,7 @@
#define __STDC_WANT_LIB_EXT1__ 1
#include <string.h>
#include <stdlib.h>
+#include <stdio.h>
#include <unistd.h>
#ifdef HAVE_EXPLICIT_BZERO
#include <strings.h>