summaryrefslogtreecommitdiff
path: root/libsanitizer/sanitizer_common/sanitizer_rtems.h
diff options
context:
space:
mode:
Diffstat (limited to 'libsanitizer/sanitizer_common/sanitizer_rtems.h')
-rw-r--r--libsanitizer/sanitizer_common/sanitizer_rtems.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/libsanitizer/sanitizer_common/sanitizer_rtems.h b/libsanitizer/sanitizer_common/sanitizer_rtems.h
new file mode 100644
index 00000000000..dc64bbc00df
--- /dev/null
+++ b/libsanitizer/sanitizer_common/sanitizer_rtems.h
@@ -0,0 +1,19 @@
+//===-- sanitizer_rtems.h ---------------------------------------*- C++ -*-===//
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file is shared between various sanitizers' runtime libraries and
+// provides definitions for RTEMS-specific functions.
+//===----------------------------------------------------------------------===//
+#ifndef SANITIZER_RTEMS_H
+#define SANITIZER_RTEMS_H
+
+#include "sanitizer_platform.h"
+#if SANITIZER_RTEMS
+#include "sanitizer_common.h"
+
+#endif // SANITIZER_RTEMS
+#endif // SANITIZER_RTEMS_H