mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-14 17:59:28 +08:00
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;
|
|
}
|