diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-02-13 15:22:47 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-02-13 15:22:47 +0000 |
commit | 0881a12999f9598f422b3149cbd9d1b1a2be8e92 (patch) | |
tree | 8cdd79216fed8c47e249948c595dd872241687a3 /libm | |
parent | d09f1655887b453e86c9c29b40463218a778fbc2 (diff) |
- scalb{,f,l} depend on UCLIBC_SUSV3_LEGACY
Diffstat (limited to 'libm')
-rw-r--r-- | libm/float_wrappers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/float_wrappers.c b/libm/float_wrappers.c index 22258f1fa..93d56c3c9 100644 --- a/libm/float_wrappers.c +++ b/libm/float_wrappers.c @@ -388,7 +388,7 @@ float fmaf (float x, float y, float z) } #endif -#ifdef L_scalbf +#if defined L_scalbf && defined __UCLIBC_SUSV3_LEGACY__ float scalbf (float x, float y) { return (float) scalb( (double)x, (double)y ); |