diff options
author | me0wmix <me0wmix@cryptoanarchy.localnet> | 2016-01-21 11:18:26 -0700 |
---|---|---|
committer | me0wmix <me0wmix@cryptoanarchy.localnet> | 2016-01-21 11:18:26 -0700 |
commit | 28f95eb001a47056287c8adf07c2638746ad8e48 (patch) | |
tree | 1ca085f0499b8e43d190b62dc02b15a5f1f0b2c5 /tests/unit_tests/slow_memmem.cpp | |
parent | Merge pull request #616 (diff) | |
download | monero-28f95eb001a47056287c8adf07c2638746ad8e48.tar.xz |
OpenBSD support for Monero.
Diffstat (limited to 'tests/unit_tests/slow_memmem.cpp')
-rw-r--r-- | tests/unit_tests/slow_memmem.cpp | 4 |
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 |