Get rid of ASM_TYPE_DIRECTIVE{,_PREFIX}.
[platform/upstream/glibc.git] / sysdeps / i386 / fpu / e_sqrt.S
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Public domain.
4  */
5
6 #include <machine/asm.h>
7
8 ENTRY(__ieee754_sqrt)
9         fldl    4(%esp)
10         fsqrt
11         ret
12 END (__ieee754_sqrt)
13 strong_alias (__ieee754_sqrt, __sqrt_finite)