1/*
2 * Public domain.
3 */
4
5#include <machine/asm.h>
6
7RCSID("$NetBSD: $")
8
9ENTRY(__scalbnl)
10	fildl	16(%esp)
11	fldt	4(%esp)
12	fscale
13	fstp	%st(1)
14	ret
15END (__scalbnl)
16strong_alias (__scalbnl, __scalblnl)
17
18#include <shlib-compat.h>
19#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20)
20compat_symbol (libc, __scalbnl, scalblnl, GLIBC_2_1);
21#endif
22