zig
Code
Branches
Tags
Commits
master
zig
/
lib
/
libc
/
musl
/
src
/
math
/
lround.c
Top
1
#
include
<math.h>
2
3
long
lround
(
double
x
)
4
{
5
return
round
(
x
)
;
6
}