1/*
2 * Public domain.
3 */
4
5#include <machine/asm.h>
6#include <i386-math-asm.h>
7
8RCSID("$NetBSD: s_scalbn.S,v 1.4 1995/05/09 00:19:06 jtc Exp $")
9
10ENTRY(__scalbn)
11	fildl	12(%esp)
12	fldl	4(%esp)
13	fscale
14	fstp	%st(1)
15	DBL_NARROW_EVAL
16	ret
17END (__scalbn)
18strong_alias (__scalbn, __scalbln)
19
20#include <shlib-compat.h>
21#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_20)
22compat_symbol (libc, __scalbn, scalbln, GLIBC_2_1);
23#endif
24