mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-21 21:49:03 +00:00
9 lines
102 B
C
9 lines
102 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
long lround(double x) {
|
||
|
long y;
|
||
|
x = round(x);
|
||
|
y = x;
|
||
|
return y;
|
||
|
}
|