mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
18 lines
327 B
C
18 lines
327 B
C
![]() |
//
|
||
|
// __report_rangecheckfailure.c
|
||
|
//
|
||
|
// Copyright (c) 2024 Timo Kreuzer
|
||
|
//
|
||
|
// Implementation of __report_rangecheckfailure.
|
||
|
//
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
//
|
||
|
|
||
|
#include <intrin.h>
|
||
|
#include <ntrtl.h>
|
||
|
|
||
|
__declspec(noreturn) void __cdecl __report_rangecheckfailure(void)
|
||
|
{
|
||
|
__fastfail(FAST_FAIL_RANGE_CHECK_FAILURE);
|
||
|
}
|