2010-02-09 09:09:28 +03:00
|
|
|
#ifndef _FENV_H
|
|
|
|
#define _FENV_H
|
|
|
|
|
|
|
|
#if defined(_X86_)
|
|
|
|
# include <arch/x86/fenv.h>
|
2010-05-11 23:40:06 +04:00
|
|
|
#elif defined(_x86_64_)
|
|
|
|
# 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 */
|
|
|
|
|