Sign in
mojo
/
mojo-tools
/
74b0cac9bdd351dc67c6fc99a7a8b64e85de2f5d
/
.
/
fusl
/
src
/
math
/
llrintf.c
blob: d6ae6de36e586f5e15675ec4606bb72ebce0d7c0 [
file
]
#include
<math.h>
/* uses LLONG_MAX > 2^24, see comments in lrint.c */
long
long
llrintf
(
float
x
)
{
return
rintf
(
x
);
}