ReactOS 0.4.16-dev-1515-g853b446
_fdtest.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 _fdtest.
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 _fdtest(_In_ float* _Px);
14#pragma function(_fdtest)
15#endif
16
18short
20_fdtest(_In_ float* _Px)
21{
22 return _fdclass(*_Px);
23}
#define _X(x)
Definition: CPath.cpp:42
_Check_return_ short __cdecl _fdtest(_In_ float *_Px)
Definition: _fdtest.c:20
_Check_return_ short __cdecl _fdclass(_In_ float _X)
Definition: _fdclass.c:28
#define __cdecl
Definition: accygwin.h:79
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158