1 //=-- ubsan_signals_standalone.h 2 //------------------------------------------------===// 3 // 4 // This file is distributed under the University of Illinois Open Source 5 // License. See LICENSE.TXT for details. 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // Installs signal handlers and related interceptors for UBSan standalone. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef UBSAN_SIGNALS_STANDALONE_H 14 #define UBSAN_SIGNALS_STANDALONE_H 15 16 namespace __ubsan { 17 18 // Initializes signal handlers and interceptors. 19 void InitializeDeadlySignals(); 20 21 } // namespace __ubsan 22 23 #endif // UBSAN_SIGNALS_STANDALONE_H 24