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