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