ReactOS 0.4.15-dev-7907-g95bf896
ceilf.c
Go to the documentation of this file.
1
2#include <math.h>
3
4#ifdef _MSC_VER
5#pragma function(ceilf)
6#endif
7
9float
12 _In_ float x)
13{
14 return (float)ceil((double)x);
15}
#define __cdecl
Definition: accygwin.h:79
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
_Check_return_ _CRTIMP double __cdecl ceil(_In_ double x)
#define _Check_return_
Definition: ms_sal.h:557
#define _In_
Definition: ms_sal.h:308
#define ceilf(x)
Definition: mymath.h:62