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