mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 19:21:38 +00:00
[CRT_APITEST] Implement tests for fabs/fabsf
This commit is contained in:
parent
96b847fd04
commit
8a67170616
6 changed files with 204 additions and 2 deletions
|
@ -169,7 +169,9 @@ _Check_return_ __CRT_INLINE float __CRTDECL ldexpf(_In_ float x, _In_ int y) { r
|
|||
_Check_return_ __CRT_INLINE long double __CRTDECL tanl(_In_ long double x) { return (tan((double)x)); }
|
||||
#endif
|
||||
|
||||
#if defined(__ia64__) || defined(_M_IA64) || \
|
||||
#if defined(_CRTBLD)
|
||||
_Check_return_ float __cdecl fabsf(_In_ float x);
|
||||
#elif defined(__ia64__) || defined(_M_IA64) || \
|
||||
defined(__arm__) || defined(_M_ARM) || \
|
||||
defined(__arm64__) || defined(_M_ARM64)
|
||||
_Check_return_ _CRT_JIT_INTRINSIC _CRTIMP float __cdecl fabsf(_In_ float x);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue