Sync usage with man page.
[netbsd-mini2440.git] / lib / libc / arch / sparc / gen / fpgetsticky.c
blob3141690f4d7e21bb00a028a6fcea19b9d00e2f2e
1 /* $NetBSD: fpgetsticky.c,v 1.4 2005/06/12 05:21:26 lukem Exp $ */
3 /*
4 * Written by J.T. Conklin, Apr 10, 1995
5 * Public domain.
6 */
8 #include <sys/cdefs.h>
9 #if defined(LIBC_SCCS) && !defined(lint)
10 __RCSID("$NetBSD: fpgetsticky.c,v 1.4 2005/06/12 05:21:26 lukem Exp $");
11 #endif /* LIBC_SCCS and not lint */
13 #include "namespace.h"
15 #include <ieeefp.h>
17 #ifdef __weak_alias
18 __weak_alias(fpgetsticky,_fpgetsticky)
19 #endif
21 fp_except
22 fpgetsticky()
24 int x;
26 __asm("st %%fsr,%0" : "=m" (*&x));
27 return (x >> 5) & 0x1f;