Explorar o código

forgot to remove one #endif...

Denis Vlasenko %!s(int64=15) %!d(string=hai) anos
pai
achega
07fbe8979d
Modificáronse 1 ficheiros con 0 adicións e 1 borrados
  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__