mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-20 12:00:06 +00:00
15 lines
229 B
ArmAsm
15 lines
229 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_rint.S,v 1.4 1995/05/09 00:16:08 jtc Exp $")
|
||
|
|
||
|
ENTRY(__rint)
|
||
|
fldl 4(%esp)
|
||
|
frndint
|
||
|
ret
|
||
|
weak_alias (__rint, rint)
|