Browse Source

forgot to remove one #endif...

Denis Vlasenko 15 years ago
parent
commit
07fbe8979d
1 changed files with 0 additions and 1 deletions
  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__