xref: /haiku/headers/posix/fenv.h (revision 9e54316c528c34ee76f4d0d21150ceadd031c4de)
1 #ifndef _FENV_H
2 #define _FENV_H
3 
4 #if defined(__i386__)
5 #  include <arch/x86/fenv.h>
6 #elif defined(__x86_64__)
7 #  include <arch/x86_64/fenv.h>
8 #elif defined(__arm__)
9 #  include <arch/arm/fenv.h>
10 #elif defined(__aarch64__)
11 #  include <arch/arm64/fenv.h>
12 #elif defined(__POWERPC__)
13 #  include <arch/ppc/fenv.h>
14 #else
15 #  error There is no fenv.h for this architecture!
16 #endif
17 
18 #endif /* _FENV_H */
19 
20