Browse Source

- scalb{,f,l} depend on UCLIBC_SUSV3_LEGACY

Bernhard Reutner-Fischer 15 years ago
parent
commit
0881a12999
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libm/float_wrappers.c

+ 1 - 1
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 );