mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-01 11:52:47 +00:00
20 lines
685 B
C
20 lines
685 B
C
|
//===-- 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
|