1 //===-- sanitizer_rtems.h ---------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file is shared between various sanitizers' runtime libraries and 10 // provides definitions for RTEMS-specific functions. 11 //===----------------------------------------------------------------------===// 12 #ifndef SANITIZER_RTEMS_H 13 #define SANITIZER_RTEMS_H 14 15 #include "sanitizer_platform.h" 16 #if SANITIZER_RTEMS 17 #include "sanitizer_common.h" 18 19 #endif // SANITIZER_RTEMS 20 #endif // SANITIZER_RTEMS_H 21