Sign in
fuchsia
/
zircon
/
sandbox/voydanoff/dwc3-cpp
/
.
/
third_party
/
ulib
/
musl
/
src
/
math
/
lrintf.c
blob: 632e96d701f32afe70e7537e141b9755b060439b [
file
] [
log
] [
blame
]
#include
<math.h>
/* uses LONG_MAX > 2^24, see comments in lrint.c */
long
lrintf
(
float
x
)
{
return
rintf
(
x
);
}