Index: lib/scudo/scudo_interceptors.cpp =================================================================== --- lib/scudo/scudo_interceptors.cpp +++ lib/scudo/scudo_interceptors.cpp @@ -7,13 +7,10 @@ // //===----------------------------------------------------------------------===// /// -/// Linux specific malloc interception functions. +/// Interceptors for malloc related functions. /// //===----------------------------------------------------------------------===// -#include "sanitizer_common/sanitizer_platform.h" -#if SANITIZER_LINUX - #include "scudo_allocator.h" #include "interception/interception.h" @@ -71,5 +68,3 @@ INTERCEPTOR(int, mallopt, int cmd, int value) { return -1; } - -#endif // SANITIZER_LINUX