musl-tcc/src/math/aarch64/round.c

8 lines
106 B
C

#include <math.h>
double round(double x)
{
__asm__ ("frinta %d0, %d1" : "=w"(x) : "w"(x));
return x;
}