ReactOS 0.4.15-dev-7924-g5949c20
_copysignf.c File Reference
#include <math.h>
Include dependency graph for _copysignf.c:

Go to the source code of this file.

Functions

_Check_return_ float __cdecl _copysignf (_In_ float x, _In_ float y)
 

Function Documentation

◆ _copysignf()

_Check_return_ float __cdecl _copysignf ( _In_ float  x,
_In_ float  y 
)

Definition at line 7 of file _copysignf.c.

10{
11 return (float)_copysign((double)x, (double)y);
12}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ __MINGW_NOTHROW _CRTIMP double __cdecl _copysign(_In_ double, _In_ double)