repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
sysdeps
/
libm-i387
/
s_sinf.S
blob
a010d60f5ef4e53fb2381c73a02214a66d122932
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_sinf.S,v 1.3 1995/05/09 00:27:53 jtc Exp $")
9
10
/* A float's domain isn't large enough to require argument reduction. */
11
ENTRY(__sinf)
12
flds 4(%esp)
13
fsin
14
ret
15
END (__sinf)
16
weak_alias (__sinf, sinf)