mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 18:48:53 +00:00
23 lines
285 B
C
23 lines
285 B
C
//
|
|
// _fdtest.c
|
|
//
|
|
// Copyright (c) 2024 Timo Kreuzer
|
|
//
|
|
// Implementation of _fdtest.
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#include <math.h>
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma function(_fdtest)
|
|
#endif
|
|
|
|
_Check_return_
|
|
short
|
|
__cdecl
|
|
_fdtest(_In_ float* _Px)
|
|
{
|
|
return _fdclass(*_Px);
|
|
}
|