mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
17 lines
327 B
C
17 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);
|
|
}
|