Update copyright dates with scripts/update-copyrights.
[glibc.git] / sysdeps / i386 / fpu / s_scalbnf.S
blob0de0694c7056a3029c88bd397a5d087fb21f066a
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Public domain.
4  */
6 #include <machine/asm.h>
8 RCSID("$NetBSD: s_scalbnf.S,v 1.3 1995/05/09 00:19:59 jtc Exp $")
10 ENTRY(__scalbnf)
11         fildl   8(%esp)
12         flds    4(%esp)
13         fscale
14         fstp    %st(1)
15         ret
16 END (__scalbnf)
17 weak_alias (__scalbnf, scalbnf)
18 strong_alias (__scalbnf, __scalblnf)
20 #include <shlib-compat.h>
21 #if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20)
22 compat_symbol (libc, __scalbnf, scalblnf, GLIBC_2_1);
23 #endif