ReactOS 0.4.16-dev-963-g182f353
__std_terminate.c
Go to the documentation of this file.
1//
2// __std_terminate.c
3//
4// Copyright (c) 2024 Timo Kreuzer
5//
6// Implementation of __std_terminate.
7//
8// SPDX-License-Identifier: MIT
9//
10
11#include <process.h>
12
13__declspec(noreturn) void __cdecl terminate();
14
15__declspec(noreturn)
16void __std_terminate(void)
17{
18 terminate();
19}
#define __cdecl
Definition: accygwin.h:79
void __declspec(noinline) __cdecl _free_base(void *const block)
Definition: free_base.cpp:98
void MSVCRT() terminate()
Definition: cpp.c:716
void __std_terminate()
Definition: terminate.cpp:11