Sign in
mojo
/
mojo-testing
/
2b9bfa7f95a3a0b6f10edd3cac33ae40587b7bbc
/
.
/
fusl
/
src
/
math
/
lround.c
blob: d283026f1b91a67528b818b9846022d56ecf81dc [
file
] [
log
] [
blame
]
#include
<math.h>
long
lround
(
double
x
)
{
return
round
(
x
);
}