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