Home | History | Annotate | Line # | Download | only in include
ieeefp.h revision 1.6
      1 /*	$NetBSD: ieeefp.h,v 1.6 2005/02/03 04:39:32 perry 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(void);
     15 fp_rnd    fpsetround(fp_rnd);
     16 fp_except fpgetmask(void);
     17 fp_except fpsetmask(fp_except);
     18 fp_except fpgetsticky(void);
     19 fp_except fpsetsticky(fp_except);
     20 
     21 #endif /* _IEEEFP_H_ */
     22