This website requires JavaScript.
Explore
Help
Register
Sign In
Lab
/
cosmopolitan
Watch
1
Star
0
Fork
You've already forked cosmopolitan
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
2796afb0c2
cosmopolitan
/
libc
/
math
/
lround.c
9 lines
102 B
C
Raw
Blame
History
#
include
"libc/math/math.h"
long
lround
(
double
x
)
{
long
y
;
x
=
round
(
x
)
;
y
=
x
;
return
y
;
}
Reference in New Issue
View Git Blame
Copy Permalink