18 lines
338 B
C
18 lines
338 B
C
#ifndef _FENV_H
|
|
#define _FENV_H
|
|
|
|
#if defined(__INTEL__)
|
|
# include <arch/x86/fenv.h>
|
|
#elif defined(__x86_64__)
|
|
# include <arch/x86_64/fenv.h>
|
|
#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 */
|
|
|