b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
23 lines
455 B
C
23 lines
455 B
C
/* $NetBSD: ieeefp.h,v 1.7 2005/11/18 20:02:59 christos Exp $ */
|
|
|
|
/*
|
|
* Written by J.T. Conklin, Apr 6, 1995
|
|
* Public domain.
|
|
*/
|
|
|
|
#ifndef _IEEEFP_H_
|
|
#define _IEEEFP_H_
|
|
|
|
#include <sys/cdefs.h>
|
|
#include <machine/ieeefp.h>
|
|
|
|
__BEGIN_DECLS
|
|
fp_rnd fpgetround(void);
|
|
fp_rnd fpsetround(fp_rnd);
|
|
fp_except fpgetmask(void);
|
|
fp_except fpsetmask(fp_except);
|
|
fp_except fpgetsticky(void);
|
|
fp_except fpsetsticky(fp_except);
|
|
__END_DECLS
|
|
|
|
#endif /* _IEEEFP_H_ */
|