Sign in
mojo
/
mojo-tools
/
910c5448926fa16d8a0a25eaa92253cb3b505a0c
/
.
/
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
);
}