Sign in
fuchsia
/
zircon
/
sandbox/travisg/vmalloc
/
.
/
third_party
/
ulib
/
musl
/
src
/
math
/
llrintf.c
blob: 24863a24035edbb96292cb008f72cbbe54e9e64a [
file
] [
log
] [
blame
]
#include
<math.h>
/* uses LLONG_MAX > 2^24, see comments in lrint.c */
long
long
llrintf
(
float
x
)
{
return
rintf
(
x
);
}