summaryrefslogtreecommitdiff
path: root/lib/interception
diff options
context:
space:
mode:
authorPetr Hosek <phosek@chromium.org>2017-09-13 01:18:15 +0000
committerPetr Hosek <phosek@chromium.org>2017-09-13 01:18:15 +0000
commit995eff5631725e6e6fceba4883d01a7151ee5962 (patch)
tree46cbff2d26cdeb48cbaf9e8cf19546dbc3549d7c /lib/interception
parentcad7a086bf3ecc2d9cb1e79cfb299fe923a53c8e (diff)
[Fuchsia] Magenta -> Zircon
Fuchsia's lowest API layer has been renamed from Magenta to Zircon. Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D37770 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@313106 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/interception')
-rw-r--r--lib/interception/interception.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/interception/interception.h b/lib/interception/interception.h
index 9e65ffa8e..953498484 100644
--- a/lib/interception/interception.h
+++ b/lib/interception/interception.h
@@ -152,7 +152,7 @@ const interpose_substitution substitution_##func_name[] \
// There is no general interception at all on Fuchsia.
// Sanitizer runtimes just define functions directly to preempt them,
// and have bespoke ways to access the underlying libc functions.
-# include <magenta/sanitizer.h>
+# include <zircon/sanitizer.h>
# define INTERCEPTOR_ATTRIBUTE __attribute__((visibility("default")))
# define REAL(x) __unsanitized_##x
# define DECLARE_REAL(ret_type, func, ...)