1 /* $NetBSD: ieeefp.h,v 1.5 2000/06/13 01:21:53 simonb 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 fp_rnd fpgetround __P((void)); 15 fp_rnd fpsetround __P((fp_rnd)); 16 fp_except fpgetmask __P((void)); 17 fp_except fpsetmask __P((fp_except)); 18 fp_except fpgetsticky __P((void)); 19 fp_except fpsetsticky __P((fp_except)); 20 21 #endif /* _IEEEFP_H_ */ 22