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