ReactOS 0.4.16-dev-2104-gb84fa49
floorf.c
Go to the documentation of this file.
1
2#include <math.h>
3
4#ifdef _MSC_VER
5#pragma function(floorf)
6#endif
7
9float
12 _In_ float x)
13{
14 return (float)floor((double)x);
15}
#define __cdecl
Definition: corecrt.h:121
_ACRTIMP double __cdecl floor(double)
Definition: floor.c:18
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define floorf(x)
Definition: mymath.h:65
#define _Check_return_
Definition: no_sal2.h:60
#define _In_
Definition: no_sal2.h:158