xref: /netbsd-src/lib/libc/arch/mips/gen/fpgetround.c (revision df0caa2637da0538ecdf6b878c4d08e684b43d8f)
1 /*	$NetBSD: fpgetround.c,v 1.4 2005/06/12 05:21:26 lukem Exp $	*/
2 
3 /*
4  * Written by J.T. Conklin, Apr 11, 1995
5  * Public domain.
6  */
7 
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetround.c,v 1.4 2005/06/12 05:21:26 lukem Exp $");
11 #endif /* LIBC_SCCS and not lint */
12 
13 #include "namespace.h"
14 
15 #include <ieeefp.h>
16 
17 #ifdef __weak_alias
18 __weak_alias(fpgetround,_fpgetround)
19 #endif
20 
21 fp_rnd
22 fpgetround()
23 {
24 	int x;
25 
26 	__asm__("cfc1 %0,$31" : "=r" (x));
27 	return x & 0x03;
28 }
29