OSDN Git Service

- scalb{,f,l} depend on UCLIBC_SUSV3_LEGACY
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 13 Feb 2009 15:22:47 +0000 (15:22 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 13 Feb 2009 15:22:47 +0000 (15:22 -0000)
libm/float_wrappers.c

index 22258f1..93d56c3 100644 (file)
@@ -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 );