mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 04:20:46 +00:00
20 lines
286 B
C
20 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();
|
||
|
}
|