2000-06-13 01:21:52 +00:00
|
|
|
/* $NetBSD: ieeefp.h,v 1.5 2000/06/13 01:21:53 simonb Exp $ */
|
1998-01-09 08:03:16 +00:00
|
|
|
|
1995-04-07 00:59:09 +00:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, Apr 6, 1995
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IEEEFP_H_
|
|
|
|
#define _IEEEFP_H_
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
1995-04-09 21:31:58 +00:00
|
|
|
#include <machine/ieeefp.h>
|
1995-04-07 00:59:09 +00:00
|
|
|
|
2000-06-13 01:21:52 +00:00
|
|
|
fp_rnd fpgetround __P((void));
|
|
|
|
fp_rnd fpsetround __P((fp_rnd));
|
|
|
|
fp_except fpgetmask __P((void));
|
|
|
|
fp_except fpsetmask __P((fp_except));
|
|
|
|
fp_except fpgetsticky __P((void));
|
|
|
|
fp_except fpsetsticky __P((fp_except));
|
1995-04-07 00:59:09 +00:00
|
|
|
|
|
|
|
#endif /* _IEEEFP_H_ */
|