38ecc1a764
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35437 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
276 B
C
16 lines
276 B
C
#ifndef _FENV_H
|
|
#define _FENV_H
|
|
|
|
#if defined(_X86_)
|
|
# include <arch/x86/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 */
|
|
|