xref: /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/sanitizer_rtems.h (revision 627f7eb200a4419d89b531d55fccd2ee3ffdcde0)
1 //===-- sanitizer_rtems.h ---------------------------------------*- C++ -*-===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file is shared between various sanitizers' runtime libraries and
9 // provides definitions for RTEMS-specific functions.
10 //===----------------------------------------------------------------------===//
11 #ifndef SANITIZER_RTEMS_H
12 #define SANITIZER_RTEMS_H
13 
14 #include "sanitizer_platform.h"
15 #if SANITIZER_RTEMS
16 #include "sanitizer_common.h"
17 
18 #endif  // SANITIZER_RTEMS
19 #endif  // SANITIZER_RTEMS_H
20