1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-01 11:39:58 +00:00
reactos/sdk/lib/cpprt/terminate.cpp

15 lines
292 B
C++
Raw Normal View History

/*
* PROJECT: ReactOS C++ Runtime Library
* LICENSE: CC0-1.0 (https://spdx.org/licenses/CC0-1.0)
* PURPOSE: __std_terminate implementation
* COPYRIGHT: Timo Kreuzer (timo.kreuzer@reactos.org)
*/
#include <exception>
extern "C"
void __std_terminate()
{
terminate();
}