mirror of
https://github.com/openbsd/src.git
synced 2025-01-03 06:45:37 -08:00
22dda6cb9f
friends' names unbreaking at least enblend-enfuse & inkscape on macppc & alpha reported, tested: ajacoutot@, sthen@ ok: millert@, otto@
24 lines
498 B
C
24 lines
498 B
C
/* $OpenBSD: ieeefp.h,v 1.4 2009/09/27 21:23:55 martynas 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
|
|
extern fp_rnd fpgetround(void);
|
|
extern fp_rnd fpsetround(fp_rnd);
|
|
extern fp_except fpgetmask(void);
|
|
extern fp_except fpsetmask(fp_except);
|
|
extern fp_except fpgetsticky(void);
|
|
extern fp_except fpsetsticky(fp_except);
|
|
__END_DECLS
|
|
|
|
#endif /* _IEEEFP_H_ */
|