1234567891011121314151617181920212223242526272829303132333435 |
- test-float.c [plain text]
- #define FUNC(function) function ## f
- #define FLOAT float
- #define TEST_MSG "testing float (without inline functions)\n"
- #define MATHCONST(x) x
- #define CHOOSE(Clongdouble,Cdouble,Cfloat,Cinlinelongdouble,Cinlinedouble,Cinlinefloat) Cfloat
- #define PRINTF_EXPR "e"
- #define PRINTF_XEXPR "a"
- #define PRINTF_NEXPR "f"
- #define TEST_FLOAT 1
- #ifndef __NO_MATH_INLINES
- # define __NO_MATH_INLINES
- #endif
- #include "libm-test.c"
|