mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-01-01 14:33:38 +01:00
f22d7db106
Removed all long double support, since ARM doesn't have long doubles.
9 lines
133 B
C
9 lines
133 B
C
#ifdef __arm__
|
|
#include "../arm/fenv.h"
|
|
#else
|
|
#ifdef __LP64
|
|
#include "../amd64/fenv.h"
|
|
#else
|
|
#include "../i387/fenv.h"
|
|
#endif
|
|
#endif
|