mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-03 02:11:08 +00:00
15 lines
233 B
ArmAsm
15 lines
233 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_rintf.S,v 1.3 1995/05/09 00:17:22 jtc Exp $")
|
||
|
|
||
|
ENTRY(__rintf)
|
||
|
flds 4(%esp)
|
||
|
frndint
|
||
|
ret
|
||
|
weak_alias (__rintf, rintf)
|