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