ReactOS 0.4.15-dev-7953-g1f49173
fmodf.c File Reference
#include <math.h>
Include dependency graph for fmodf.c:

Go to the source code of this file.

Functions

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

Function Documentation

◆ fmodf()

Definition at line 11 of file fmodf.c.

14{
15 return (float)fmod((double)x,(double)y);
16}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ double __cdecl fmod(_In_ double x, _In_ double y)