ReactOS 0.4.15-dev-7934-g1dc8d80
modff.c
Go to the documentation of this file.
1
2#include <math.h>
3
5float
8 _In_ float x,
9 _Out_ float *y)
10{
11 double _Di, _Df;
12
13 _Df = modf((double)x,&_Di);
14 *y = (float)_Di;
15
16 return (float)_Df;
17}
#define __cdecl
Definition: accygwin.h:79
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ _CRTIMP double __cdecl modf(_In_ double x, _Out_ double *y)
float modff(float x, float *iptr)
Definition: modff.c:30
static float(__cdecl *square_half_float)(float x
#define _Check_return_
Definition: ms_sal.h:557
#define _Out_
Definition: ms_sal.h:345
#define _In_
Definition: ms_sal.h:308