xref: /netbsd-src/include/ieeefp.h (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: ieeefp.h,v 1.7 2005/11/18 20:02:59 christos Exp $	*/
2 
3 /*
4  * Written by J.T. Conklin, Apr 6, 1995
5  * Public domain.
6  */
7 
8 #ifndef _IEEEFP_H_
9 #define _IEEEFP_H_
10 
11 #include <sys/cdefs.h>
12 #include <machine/ieeefp.h>
13 
14 __BEGIN_DECLS
15 fp_rnd    fpgetround(void);
16 fp_rnd    fpsetround(fp_rnd);
17 fp_except fpgetmask(void);
18 fp_except fpsetmask(fp_except);
19 fp_except fpgetsticky(void);
20 fp_except fpsetsticky(fp_except);
21 __END_DECLS
22 
23 #endif /* _IEEEFP_H_ */
24