blob: 168ad7a1d0d8820d4b8b90779e247125fad033f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Written by Michael Shalayeff. Public Domain
*/
#include "math.h"
float
sqrtf(float x)
{
__asm__ __volatile__ ("fsqrt,sgl %0, %0" : "+f" (x));
return (x);
}
|