reactos/sdk/lib/vcruntime/__std_terminate.c

20 lines
286 B
C
Raw Normal View History

//
// __std_terminate.c
//
// Copyright (c) 2024 Timo Kreuzer
//
// Implementation of __std_terminate.
//
// SPDX-License-Identifier: MIT
//
#include <process.h>
__declspec(noreturn) void __cdecl terminate();
__declspec(noreturn)
void __std_terminate(void)
{
terminate();
}