blob: b05745e954b70011a90dc6f64f587c6b0d600fee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- folly/memory/Malloc.h.orig 2019-06-16 07:28:42 UTC
+++ folly/memory/Malloc.h
@@ -96,11 +96,11 @@ mallctlbymib(const size_t*, size_t, void*, size_t*, vo
// for malloc_usable_size
// NOTE: FreeBSD 9 doesn't have malloc.h. Its definitions
// are found in stdlib.h.
-#if __has_include(<malloc.h>)
-#include <malloc.h>
-#else
+//#if __has_include(<malloc.h>)
+//#include <malloc.h>
+//#else
#include <stdlib.h>
-#endif
+//#endif
#include <cassert>
#include <cstddef>
|