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