mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 00:00:06 +00:00
17 lines
247 B
ArmAsm
17 lines
247 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
|
|
END (__atan)
|
|
weak_alias (__atan, atan)
|