1 //===-- sanitizer_rtems.h ---------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file is shared between various sanitizers' runtime libraries and 11 // provides definitions for RTEMS-specific functions. 12 //===----------------------------------------------------------------------===// 13 #ifndef SANITIZER_RTEMS_H 14 #define SANITIZER_RTEMS_H 15 16 #include "sanitizer_platform.h" 17 #if SANITIZER_RTEMS 18 #include "sanitizer_common.h" 19 20 #endif // SANITIZER_RTEMS 21 #endif // SANITIZER_RTEMS_H 22