[BZ #6803] Set errno for scalbln, scalbn
[platform/upstream/glibc.git] / sysdeps / ieee754 / flt-32 / s_scalblnf.c
index 2a2d7ab..ad3c586 100644 (file)
@@ -13,8 +13,8 @@
  * ====================================================
  */
 
-#include "math.h"
-#include "math_private.h"
+#include <math.h>
+#include <math_private.h>
 
 static const float
 two25   =  3.355443200e+07,    /* 0x4c000000 */
@@ -50,4 +50,3 @@ __scalblnf (float x, long int n)
        SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23));
        return x*twom25;
 }
-weak_alias (__scalblnf, scalblnf)