//===-------------------------- abort_message.h-----------------------------===//1//2// The LLVM Compiler Infrastructure3//4// This file is dual licensed under the MIT and the University of Illinois Open5// Source Licenses. See LICENSE.TXT for details.6//7//===----------------------------------------------------------------------===//89#ifndef __ABORT_MESSAGE_H_10#define __ABORT_MESSAGE_H_1112#include "cxxabi.h"1314#ifdef __cplusplus15extern "C" {16#endif1718_LIBCXXABI_HIDDEN _LIBCXXABI_NORETURN void19abort_message(const char *format, ...) __attribute__((format(printf, 1, 2)));2021#ifdef __cplusplus22}23#endif2425#endif262728