mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-08 09:07:53 +00:00
24 lines
688 B
C
24 lines
688 B
C
|
//=-- ubsan_signals_standalone.h
|
||
|
//------------------------------------------------===//
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// Installs signal handlers and related interceptors for UBSan standalone.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef UBSAN_SIGNALS_STANDALONE_H
|
||
|
#define UBSAN_SIGNALS_STANDALONE_H
|
||
|
|
||
|
namespace __ubsan {
|
||
|
|
||
|
// Initializes signal handlers and interceptors.
|
||
|
void InitializeDeadlySignals();
|
||
|
|
||
|
} // namespace __ubsan
|
||
|
|
||
|
#endif // UBSAN_SIGNALS_STANDALONE_H
|