[BACK]Return to ieeefp.h CVS log [TXT][DIR] Up to [local] / src / include

Annotation of src/include/ieeefp.h, Revision 1.4

1.4     ! martynas    1: /*     $OpenBSD: ieeefp.h,v 1.3 2002/02/16 21:27:17 millert Exp $      */
1.2       niklas      2:
1.1       deraadt     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:
1.4     ! martynas   14: __BEGIN_DECLS
1.3       millert    15: extern fp_rnd    fpgetround(void);
                     16: extern fp_rnd    fpsetround(fp_rnd);
                     17: extern fp_except fpgetmask(void);
                     18: extern fp_except fpsetmask(fp_except);
                     19: extern fp_except fpgetsticky(void);
                     20: extern fp_except fpsetsticky(fp_except);
1.4     ! martynas   21: __END_DECLS
1.1       deraadt    22:
                     23: #endif /* _IEEEFP_H_ */