blob: 101b62c9db05763ebebe735768657aa7b993c3cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Written by Michael Shalayeff. Public Domain
*/
#if defined(LIBM_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: s_rint.c,v 1.1 2002/05/22 21:34:56 mickey Exp $";
#endif
#include "math.h"
double
__ieee754_rint(double x)
{
__asm__ __volatile__("frnd,dbl %0,%0" : "+f" (x));
return (x);
}
|