#include <stdexcept>
#include <new>
#include <exception>
#include "abort_message.h"
#include "cxxabi.h"
#include "cxa_handlers.h"
#include "cxa_exception.h"
#include "private_typeinfo.h"
#include "include/atomic_support.h"
namespace std
{
unexpected_handler
get_unexpected() noexcept
{ … }
void
__unexpected(unexpected_handler func)
{ … }
__attribute__((noreturn))
void
unexpected()
{ … }
terminate_handler
get_terminate() noexcept
{ … }
void
__terminate(terminate_handler func) noexcept
{ … }
__attribute__((noreturn))
void
terminate() noexcept
{ … }
new_handler
get_new_handler() noexcept
{ … }
}