xref: /netbsd-src/external/apache2/llvm/dist/libcxx/src/stdexcept.cpp (revision 4d6fc14bc9b0c5bf3e30be318c143ee82cadd108)
1*4d6fc14bSjoerg //===------------------------ stdexcept.cpp -------------------------------===//
2*4d6fc14bSjoerg //
3*4d6fc14bSjoerg // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*4d6fc14bSjoerg // See https://llvm.org/LICENSE.txt for license information.
5*4d6fc14bSjoerg // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*4d6fc14bSjoerg //
7*4d6fc14bSjoerg //===----------------------------------------------------------------------===//
8*4d6fc14bSjoerg 
9*4d6fc14bSjoerg #include "stdexcept"
10*4d6fc14bSjoerg #include "new"
11*4d6fc14bSjoerg #include "string"
12*4d6fc14bSjoerg #include "system_error"
13*4d6fc14bSjoerg 
14*4d6fc14bSjoerg 
15*4d6fc14bSjoerg #ifdef _LIBCPP_ABI_VCRUNTIME
16*4d6fc14bSjoerg #include "support/runtime/stdexcept_vcruntime.ipp"
17*4d6fc14bSjoerg #else
18*4d6fc14bSjoerg #include "support/runtime/stdexcept_default.ipp"
19*4d6fc14bSjoerg #endif
20