1// Copyright 2018 The Fuchsia Authors
2//
3// Use of this source code is governed by a MIT-style
4// license that can be found in the LICENSE file or at
5// https://opensource.org/licenses/MIT
6
7#pragma once
8
9// This is used by libc++'s <new> just for std::abort.
10
11#include <__config>
12#include <stdlib.h>
13
14_LIBCPP_BEGIN_NAMESPACE_STD
15
16using ::abort;
17
18_LIBCPP_END_NAMESPACE_STD
19