diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-02-16 14:19:42 +0100 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-02-16 14:19:42 +0100 |
commit | ba22928d4bc6516e3b10785fefa6735fafdd62d5 (patch) | |
tree | dd481d126bb68e950459a2b82cb0ac99f0b4cacf /src/crypto/chacha.c | |
parent | Merge pull request #3175 (diff) | |
parent | Fixed #if instead of #ifdef (diff) | |
download | monero-ba22928d4bc6516e3b10785fefa6735fafdd62d5.tar.xz |
Merge pull request #3180
1dfed567 Fixed #if instead of #ifdef (Matt Little)
7c442453 Support building cncrypto lib with msvc (Matt Little)
Diffstat (limited to 'src/crypto/chacha.c')
-rw-r--r-- | src/crypto/chacha.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/chacha.c b/src/crypto/chacha.c index f573083be..5d3edb98d 100644 --- a/src/crypto/chacha.c +++ b/src/crypto/chacha.c @@ -6,7 +6,9 @@ Public domain. #include <memory.h> #include <stdio.h> +#ifndef _MSC_VER #include <sys/param.h> +#endif #include "chacha.h" #include "common/int-util.h" |