mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
16 lines
234 B
ArmAsm
16 lines
234 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_atan.S,v 1.4 1995/05/08 23:50:41 jtc Exp $")
|
||
|
|
||
|
ENTRY(__atan)
|
||
|
fldl 4(%esp)
|
||
|
fld1
|
||
|
fpatan
|
||
|
ret
|
||
|
weak_alias (__atan, atan)
|