/* $NetBSD: fpgetround.c,v 1.6 2012/03/21 00:38:34 christos Exp $ */ /* * Written by J.T. Conklin, Apr 10, 1995 * Public domain. */ #include #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: fpgetround.c,v 1.6 2012/03/21 00:38:34 christos Exp $"); #endif /* LIBC_SCCS and not lint */ #include "namespace.h" #include #ifdef __weak_alias __weak_alias(fpgetround,_fpgetround) #endif fp_rnd fpgetround(void) { unsigned int x; __asm("st %%fsr,%0" : "=m" (*&x)); return (x >> 30) & 0x03; }