aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/chacha.c
diff options
context:
space:
mode:
authorMatt Little <zone117x@gmail.com>2018-01-25 13:00:45 -0700
committerMatt Little <zone117x@gmail.com>2018-01-25 13:00:45 -0700
commit7c4424531ff0dbe6958d6dd8beaeb978d3a6ebdb (patch)
tree323e5d60db89952f030749178cc34b143a0b52a4 /src/crypto/chacha.c
parentMerge pull request #3115 (diff)
downloadmonero-7c4424531ff0dbe6958d6dd8beaeb978d3a6ebdb.tar.xz
Support building cncrypto lib with msvc
Diffstat (limited to 'src/crypto/chacha.c')
-rw-r--r--src/crypto/chacha.c2
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"