blob: fd1ae6324e6d25f00fb2e371ab24b1eb2194ffda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Changes for long double by Ulrich Drepper <drepper@cygnus.com>
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: $")
ENTRY(__rintl)
fldt 4(%esp)
frndint
ret
END (__rintl)
weak_alias (__rintl, rintl)
|