mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
7 lines
85 B
C
7 lines
85 B
C
#include <math.h>
|
|
|
|
double fabs(double x)
|
|
{
|
|
__asm__ ("fabs" : "+t"(x));
|
|
return x;
|
|
}
|