fmodf.c (c2c66aff) fmodf.c (aea4cfba)
1
2#include <math.h>
3
1
2#include <math.h>
3
4#ifdef _MSC_VER
5#pragma function(fmodf)
6#endif
7
4_Check_return_
5float
6__cdecl
7fmodf(
8 _In_ float x,
9 _In_ float y)
10{
11 return (float)fmod((double)x,(double)y);
12}
8_Check_return_
9float
10__cdecl
11fmodf(
12 _In_ float x,
13 _In_ float y)
14{
15 return (float)fmod((double)x,(double)y);
16}