ReactOS 0.4.16-dev-1059-gb1cf981
_dtest.c
Go to the documentation of this file.
1//
2// _dtest.c
3//
4// Copyright (c) 2024 Timo Kreuzer
5//
6// Implementation of _dtest.
7//
8// SPDX-License-Identifier: MIT
9//
10
11#include <math.h>
12
13#if defined(_MSC_VER) && (_MSC_VER >= 1922)
14#pragma function(_dtest)
15#endif
16
18short
20_dtest(_In_ double* _Px)
21{
22 return _dclass(*_Px);
23}
_Check_return_ short __cdecl _dtest(_In_ double *_Px)
Definition: _dtest.c:20
#define __cdecl
Definition: accygwin.h:79
_Check_return_ _ACRTIMP short __cdecl _dclass(_In_ double _X)
Definition: _dclass.c:30
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158