9d683ffd4b
<machine/ieeefp.h> where it belongs. o Remove the i386 specific inclusion of <machine/floatingpoint.h> from <ieeefp.h>, now that including <machine/ieeefp.h> is enough for all architectures. o Allow <machine/ieeefp.h> to inline the functions exposed by the headers by checking for _IEEEFP_INLINED_ in the MI header. When defined, prototypes are not given and it is assumed that the MD headers, when inlining only a subset of the functions provide prototypes for the functions not being inlined. Based on patch from: Terry Lambert <tlambert2@mindspring.com> Tested with: make release.
27 lines
590 B
C
27 lines
590 B
C
/* $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>
|
|
|
|
#if !defined(_IEEEFP_INLINED_)
|
|
__BEGIN_DECLS
|
|
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);
|
|
__END_DECLS
|
|
#endif /* !_IEEEFP_INLINED_ */
|
|
|
|
#endif /* _IEEEFP_H_ */
|