summaryrefslogtreecommitdiff
path: root/lib/libm/aarch64/sqrtf.c
blob: 8a7961d3faf02de0f1ce67c70290304a08171e63 (plain)
1
2
3
4
5
6
7
#include <math.h>

float sqrtf(float x)
{
	__asm__("fsqrt %s0, %s1" : "=w"(x) : "w"(x));
	return x;
}