xref: /openbsd-src/lib/libm/arch/hppa/e_sqrtf.c (revision 4c1e55dc91edd6e69ccc60ce855900fbc12cf34f)
1 /*
2  * Written by Michael Shalayeff. Public Domain
3  */
4 
5 #include "math.h"
6 
7 float
8 sqrtf(float x)
9 {
10 	__asm__ __volatile__ ("fsqrt,sgl %0, %0" : "+f" (x));
11 	return (x);
12 }
13