Преглед изворни кода

forgot to remove one #endif...

Denis Vlasenko пре 15 година
родитељ
комит
07fbe8979d
1 измењених фајлова са 0 додато и 1 уклоњено
  1. 0 1
      libm/e_scalb.c

+ 0 - 1
libm/e_scalb.c

@@ -31,7 +31,6 @@ double attribute_hidden __ieee754_scalb(double x, double fn)
 	if ( fn > 65000.0) return scalbn(x, 65000);
 	if (-fn > 65000.0) return scalbn(x,-65000);
 	return scalbn(x,(int)fn);
-#endif
 }
 
 #if defined __UCLIBC_SUSV3_LEGACY__