musl - an implementation of the standard library for Linux-based systems
blob: 13bb98d91cf204caefe08a36455527c8edb04df5 (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <math.h>
double sqrt(double x)
{
__asm__ ("fsqrt %0, %1" : "=d"(x) : "d"(x));
return x;
}
|