1f52c921e2
Signed-off-by: Jaroslaw Pelczar <jarek@jpelczar.com> Change-Id: I0859d0619d601efd003472e2846d2f980ee2e457 Reviewed-on: https://review.haiku-os.org/c/haiku/+/1799 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
20 lines
395 B
C
20 lines
395 B
C
#ifndef _FENV_H
|
|
#define _FENV_H
|
|
|
|
#if defined(__i386__)
|
|
# 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(__aarch64__)
|
|
# include <arch/arm64/fenv.h>
|
|
#elif defined(__POWERPC__)
|
|
# include <arch/ppc/fenv.h>
|
|
#else
|
|
# error There is no fenv.h for this architecture!
|
|
#endif
|
|
|
|
#endif /* _FENV_H */
|
|
|