1/*
2 * PROJECT: ReactOS C++ Runtime Library
3 * LICENSE: CC0-1.0 (https://spdx.org/licenses/CC0-1.0)
4 * PURPOSE: __std_terminate implementation
5 * COPYRIGHT: Timo Kreuzer (timo.kreuzer@reactos.org)
6 */
7
8#include <exception>
9
10extern "C"
11void __std_terminate()
12{
13 terminate();
14}