mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 09:30:06 +00:00
17 lines
252 B
ArmAsm
17 lines
252 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
|
|
END (__atanf)
|
|
weak_alias (__atanf, atanf)
|