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