projects
/
platform
/
upstream
/
glibc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge glibc-ports into ports/ directory.
[platform/upstream/glibc.git]
/
sysdeps
/
i386
/
fpu
/
s_atanf.S
1
/*
2
* Written by J.T. Conklin <jtc@netbsd.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
RCSID("$NetBSD: s_atanf.S,v 1.3 1995/05/08 23:51:33 jtc Exp $")
9
10
ENTRY(__atanf)
11
flds 4(%esp)
12
fld1
13
fpatan
14
ret
15
END (__atanf)
16
weak_alias (__atanf, atanf)