1998-12-23 11:50:52 +00:00
|
|
|
/* $NetBSD: ieeefp.h,v 1.4 1998/01/09 08:03:43 perry Exp $ */
|
2000-05-10 19:00:45 +00:00
|
|
|
/* $FreeBSD$ */
|
1998-12-23 11:50:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 6, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IEEEFP_H_
|
|
|
|
#define _IEEEFP_H_
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <machine/ieeefp.h>
|
|
|
|
|
2003-01-19 06:01:33 +00:00
|
|
|
#if !defined(_IEEEFP_INLINED_)
|
1999-06-22 17:08:25 +00:00
|
|
|
__BEGIN_DECLS
|
2002-03-23 17:24:55 +00:00
|
|
|
extern fp_rnd_t fpgetround(void);
|
|
|
|
extern fp_rnd_t fpsetround(fp_rnd_t);
|
|
|
|
extern fp_except_t fpgetmask(void);
|
|
|
|
extern fp_except_t fpsetmask(fp_except_t);
|
|
|
|
extern fp_except_t fpgetsticky(void);
|
|
|
|
extern fp_except_t fpsetsticky(fp_except_t);
|
1999-06-22 17:08:25 +00:00
|
|
|
__END_DECLS
|
2003-01-19 06:01:33 +00:00
|
|
|
#endif /* !_IEEEFP_INLINED_ */
|
1998-12-23 11:50:52 +00:00
|
|
|
|
|
|
|
#endif /* _IEEEFP_H_ */
|