Revision 8f46fe65dc256ab7ec629d68431178cfed24cd48 authored by Takahashi Yoshihiro on 22 September 2000, 10:01:51 UTC, committed by Takahashi Yoshihiro on 22 September 2000, 10:01:51 UTC
1 parent 9dec60f
Raw File
ieeefp.h
/*	$NetBSD: ieeefp.h,v 1.4 1998/01/09 08:03:43 perry Exp $	*/
/* $FreeBSD$ */

/* 
 * Written by J.T. Conklin, Apr 6, 1995
 * Public domain.
 */

#ifndef _IEEEFP_H_
#define _IEEEFP_H_

#include <sys/cdefs.h>
#include <machine/ieeefp.h>

#ifdef __i386__
#include <machine/floatingpoint.h>
#else /* !__i386__ */
__BEGIN_DECLS
extern fp_rnd_t    fpgetround __P((void));
extern fp_rnd_t    fpsetround __P((fp_rnd_t));
extern fp_except_t fpgetmask __P((void));
extern fp_except_t fpsetmask __P((fp_except_t));
extern fp_except_t fpgetsticky __P((void));
extern fp_except_t fpsetsticky __P((fp_except_t));
__END_DECLS
#endif /* __i386__ */

#endif /* _IEEEFP_H_ */
back to top