mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 02:11:08 +00:00
16 lines
238 B
ArmAsm
16 lines
238 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_atanf.S,v 1.3 1995/05/08 23:51:33 jtc Exp $")
|
||
|
|
||
|
ENTRY(__atanf)
|
||
|
flds 4(%esp)
|
||
|
fld1
|
||
|
fpatan
|
||
|
ret
|
||
|
weak_alias (__atanf, atanf)
|