aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/slow_memmem.cpp
diff options
context:
space:
mode:
authorme0wmix <me0wmix@cryptoanarchy.localnet>2016-01-21 11:18:26 -0700
committerme0wmix <me0wmix@cryptoanarchy.localnet>2016-01-21 11:18:26 -0700
commit28f95eb001a47056287c8adf07c2638746ad8e48 (patch)
tree1ca085f0499b8e43d190b62dc02b15a5f1f0b2c5 /tests/unit_tests/slow_memmem.cpp
parentMerge pull request #616 (diff)
downloadmonero-28f95eb001a47056287c8adf07c2638746ad8e48.tar.xz
OpenBSD support for Monero.
Diffstat (limited to 'tests/unit_tests/slow_memmem.cpp')
-rw-r--r--tests/unit_tests/slow_memmem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit_tests/slow_memmem.cpp b/tests/unit_tests/slow_memmem.cpp
index 8da58eaf4..a14e01885 100644
--- a/tests/unit_tests/slow_memmem.cpp
+++ b/tests/unit_tests/slow_memmem.cpp
@@ -35,8 +35,8 @@
#include <stdint.h>
#include "gtest/gtest.h"
-// Both OS X and FreeBSD don't need malloc.h
-#if !defined(__APPLE__) && !defined(__FreeBSD__)
+// OS X, FreeBSD, and OpenBSD don't need malloc.h
+#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(__OpenBSD__)
#include <malloc.h>
#endif