reactos/sdk/lib/vcruntime/__std_terminate.c
2025-02-06 09:17:37 +02:00

19 lines
286 B
C

//
// __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();
}