folly: fix sysMembarrier() with newer kernel headers
[folly.git] / folly / portability / Malloc.cpp
index d9bdf989ae37519a4da64476e58be4fabf3a1892..0040d379f745ac42e4821b71c5b00fd540191df9 100755 (executable)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -18,7 +18,7 @@
 
 #if !defined(USE_JEMALLOC) && !defined(FOLLY_USE_JEMALLOC)
 #if defined(__APPLE__) && !defined(FOLLY_HAVE_MALLOC_USABLE_SIZE)
-#include <malloc/malloc.h>
+#include <malloc/malloc.h> // @manual
 
 extern "C" size_t malloc_usable_size(void* ptr) {
   return malloc_size(ptr);