aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/oaes_lib.c
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-12-15 14:36:35 +0200
committerRiccardo Spagni <ric@spagni.net>2016-12-15 14:36:35 +0200
commit29735c8f8fda032833924285c2da7ea9b15a77c7 (patch)
tree6be858f3fd0b29be74c87ba37e3512f3a4808acf /src/crypto/oaes_lib.c
parentMerge pull request #1458 (diff)
parentPreliminary support for DragonFly BSD (diff)
downloadmonero-29735c8f8fda032833924285c2da7ea9b15a77c7.tar.xz
Merge pull request #1459
b00da61e Preliminary support for DragonFly BSD (Antonio Huete Jimenez)
Diffstat (limited to 'src/crypto/oaes_lib.c')
-rw-r--r--src/crypto/oaes_lib.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crypto/oaes_lib.c b/src/crypto/oaes_lib.c
index 2cf598e05..f054a16f4 100644
--- a/src/crypto/oaes_lib.c
+++ b/src/crypto/oaes_lib.c
@@ -34,7 +34,8 @@
#include <stdio.h>
// OS X, FreeBSD, and OpenBSD don't need malloc.h
-#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__) \
+ && !defined(__DragonFly__)
#include <malloc.h>
#endif