7 lines
80 B
C
7 lines
80 B
C
|
#include "libc/math/math.h"
|
||
|
|
||
|
long long llroundf(float x)
|
||
|
{
|
||
|
return roundf(x);
|
||
|
}
|