diff options
Diffstat (limited to 'test/math/compile_test.c')
-rw-r--r-- | test/math/compile_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/math/compile_test.c b/test/math/compile_test.c index 361556a81..61488857a 100644 --- a/test/math/compile_test.c +++ b/test/math/compile_test.c @@ -51,7 +51,9 @@ r += remainderf(float_x, float_x); /*r += remquof(float_x, float_x, &int_x); - uclibc does not have it (yet?) */ r += rintf(float_x); r += roundf(float_x); +#ifdef __UCLIBC_SUSV3_LEGACY__ r += scalbf(float_x, float_x); +#endif /*r += scalblnf(float_x, long_x); - uclibc does not have it (yet?) */ r += scalbnf(float_x, int_x); r += significandf(float_x); |