2000-06-13 05:21:52 +04:00
|
|
|
/* $NetBSD: ieeefp.h,v 1.5 2000/06/13 01:21:53 simonb 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
|
|
|
|
2000-06-13 05:21:52 +04: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 04:59:09 +04:00
|
|
|
|
|
|
|
#endif /* _IEEEFP_H_ */
|