mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 23:13:34 +00:00
8 lines
103 B
C
8 lines
103 B
C
#include "libc/math/math.h"
|
|
|
|
long lroundf(float x) {
|
|
long y;
|
|
x = roundf(x);
|
|
y = x;
|
|
return y;
|
|
}
|