Sign in
mojo
/
mojo-testing
/
6f37494c4bbcdc32e0a869bf0f08c6f1e12fdabc
/
.
/
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
);
}