about summary refs log tree commit diff
path: root/sysdeps/i386/fpu/s_rintf.S
blob: 5fdbb4fe8883563176d6fce3319d8b73d3b15941 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain.
 */

#include <machine/asm.h>
#include <libm-alias-float.h>

RCSID("$NetBSD: s_rintf.S,v 1.3 1995/05/09 00:17:22 jtc Exp $")

ENTRY(__rintf)
	flds	4(%esp)
	frndint
	ret
END (__rintf)
libm_alias_float (__rint, rint)