ReactOS 0.4.16-dev-1506-g117cd33
_dtest.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS CRT
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Implementation of _dtest.
5 * COPYRIGHT: Copyright 2025 Timo Kreuzer <timo.kreuzer@reactos.org>
6 */
7
8#include <math.h>
9
11
12#if defined(_MSC_VER) && (_MSC_VER >= 1922)
13_Check_return_ short __cdecl _dtest(_In_ double* _Px);
14#pragma function(_dtest)
15#endif
16
18short
20_dtest(_In_ double* _Px)
21{
22 return _dclass(*_Px);
23}
#define _X(x)
Definition: CPath.cpp:42
_Check_return_ short __cdecl _dclass(_In_ double _X)
Definition: _dclass.c:28
_Check_return_ short __cdecl _dtest(_In_ double *_Px)
Definition: _dtest.c:20
#define __cdecl
Definition: accygwin.h:79
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158