blob: 6ffa66811e30b9deb596b3e6aacec0f4d24ab5a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* Written by J.T. Conklin, Apr 10, 1995
* Public domain.
*/
#if defined(LIBC_SCCS) && !defined(lint)
static char rcsid[] = "$OpenBSD: fpgetround.c,v 1.2 1996/08/19 08:17:30 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <ieeefp.h>
fp_rnd
fpgetround()
{
int x;
__asm__("st %%fsr,%0" : "=m" (*&x));
return (x >> 30) & 0x03;
}
|