10 lines
112 B
C
10 lines
112 B
C
#include <math.h>
|
|
|
|
float
|
|
sqrtf (float x)
|
|
{
|
|
float res;
|
|
asm ("fsqrt" : "=t" (res) : "0" (x));
|
|
return res;
|
|
}
|