OpenLibm/include/fenv.h

10 lines
133 B
C
Raw Normal View History

#ifdef __arm__
#include "../arm/fenv.h"
#else
2012-08-19 10:14:18 +02:00
#ifdef __LP64
#include "../amd64/fenv.h"
#else
#include "../i387/fenv.h"
#endif
#endif