2010-02-09 09:09:28 +03:00
|
|
|
#ifndef _FENV_H
|
|
|
|
#define _FENV_H
|
|
|
|
|
2010-07-17 14:33:24 +04:00
|
|
|
#if defined(__INTEL__)
|
2010-02-09 09:09:28 +03:00
|
|
|
# include <arch/x86/fenv.h>
|
2012-07-27 18:21:41 +04:00
|
|
|
#elif defined(__x86_64__)
|
2010-05-11 23:40:06 +04:00
|
|
|
# include <arch/x86_64/fenv.h>
|
2010-02-09 09:09:28 +03:00
|
|
|
#elif defined(__ARM__)
|
|
|
|
# include <arch/arm/fenv.h>
|
|
|
|
#elif defined(__POWERPC__)
|
|
|
|
# include <arch/ppc/fenv.h>
|
|
|
|
#else
|
|
|
|
# error There is no fenv.h for this architecture!
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _FENV_H */
|
|
|
|
|