diff options
author | stoffu <stoffu@protonmail.ch> | 2018-02-17 01:06:05 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-02-17 01:06:05 +0900 |
commit | dfabc005d12c7d5fd6cb2b5213f7e927db196097 (patch) | |
tree | 84247b4c7346b4712b9610027802cd3ac02483f9 | |
parent | Merge pull request #3196 (diff) | |
download | monero-dfabc005d12c7d5fd6cb2b5213f7e927db196097.tar.xz |
memwipe: add missing #include <stdio.h>
-rw-r--r-- | contrib/epee/src/memwipe.c | 1 |
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> |