xref: /reactos/sdk/lib/crt/math/_copysignf.c (revision 40462c92)
1 
2 #include <math.h>
3 
4 _Check_return_
5 float
6 __cdecl
7 _copysignf(
8     _In_ float x,
9     _In_ float y)
10 {
11     return (float)_copysign((double)x, (double)y);
12 }
13