diff options
author | Riccardo Spagni <ric@spagni.net> | 2016-01-25 19:37:45 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2016-01-25 19:37:45 +0200 |
commit | d7b4e77aa3c49cafc34c4f26ec36e9aa553673c1 (patch) | |
tree | df81081e4902d84a5faeb5956b0f7a8be3731de4 /tests/unit_tests/slow_memmem.cpp | |
parent | Merge pull request #616 (diff) | |
parent | My markdown-fu sucks :P (diff) | |
download | monero-d7b4e77aa3c49cafc34c4f26ec36e9aa553673c1.tar.xz |
Merge pull request #618
64f4cd9 My markdown-fu sucks :P (me0wmix)
a6794e2 Instructions updated to include g++ package and omit optional packages (me0wmix)
34ebfe3 Last fixups in the Cmake stuff and better default build instruction (me0wmix)
82ecb3f More formatting fixes to instructions (me0wmix)
efc771d Corrected formatting on OpenBSD instructions (me0wmix)
c965bf4 Added/corrected OpenBSD build instructions. (me0wmix)
28f95eb OpenBSD support for Monero. (me0wmix)
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 |