2005-11-18 23:02:59 +03:00
|
|
|
/* $NetBSD: ieeefp.h,v 1.7 2005/11/18 20:02:59 christos Exp $ */
|
1998-01-09 11:03:16 +03:00
|
|
|
|
1995-04-07 04:59:09 +04:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 6, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IEEEFP_H_
|
|
|
|
#define _IEEEFP_H_
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
1995-04-10 01:31:58 +04:00
|
|
|
#include <machine/ieeefp.h>
|
1995-04-07 04:59:09 +04:00
|
|
|
|
2005-11-18 23:02:59 +03:00
|
|
|
__BEGIN_DECLS
|
2005-02-03 07:39:32 +03:00
|
|
|
fp_rnd fpgetround(void);
|
|
|
|
fp_rnd fpsetround(fp_rnd);
|
|
|
|
fp_except fpgetmask(void);
|
|
|
|
fp_except fpsetmask(fp_except);
|
|
|
|
fp_except fpgetsticky(void);
|
|
|
|
fp_except fpsetsticky(fp_except);
|
2005-11-18 23:02:59 +03:00
|
|
|
__END_DECLS
|
1995-04-07 04:59:09 +04:00
|
|
|
|
|
|
|
#endif /* _IEEEFP_H_ */
|