[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / compiler-rt / lib / gwp_asan / platform_specific / utilities_posix.cpp
blob7357963055095627ddb286a80552acc120adc5ba
1 //===-- utilities_posix.cpp -------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include <features.h> // IWYU pragma: keep (for __BIONIC__ macro)
11 #ifdef __BIONIC__
12 #include "gwp_asan/definitions.h"
13 #include <stdlib.h>
14 extern "C" GWP_ASAN_WEAK void android_set_abort_message(const char *);
15 #else // __BIONIC__
16 #include <stdio.h>
17 #endif
19 namespace gwp_asan {
20 void die(const char *Message) {
21 #ifdef __BIONIC__
22 if (&android_set_abort_message != nullptr)
23 android_set_abort_message(Message);
24 abort();
25 #else // __BIONIC__
26 fprintf(stderr, "%s", Message);
27 __builtin_trap();
28 #endif // __BIONIC__
30 } // namespace gwp_asan