summaryrefslogtreecommitdiff
path: root/sysdeps/libm-i387/s_rint.S
blob: be36c5f0ca8899e054ae765209ea83a5ec9f3bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * 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
END (__rint)
weak_alias (__rint, rint)