mirror of
https://github.com/reactos/reactos.git
synced 2025-07-05 17:11:28 +00:00
24 lines
281 B
C
24 lines
281 B
C
![]() |
//
|
||
|
// _dtest.c
|
||
|
//
|
||
|
// Copyright (c) 2024 Timo Kreuzer
|
||
|
//
|
||
|
// Implementation of _dtest.
|
||
|
//
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
//
|
||
|
|
||
|
#include <math.h>
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
#pragma function(_dtest)
|
||
|
#endif
|
||
|
|
||
|
_Check_return_
|
||
|
short
|
||
|
__cdecl
|
||
|
_dtest(_In_ double* _Px)
|
||
|
{
|
||
|
return _dclass(*_Px);
|
||
|
}
|