summaryrefslogtreecommitdiff
path: root/src/math/powerpc64/sqrt.c
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;
}