1 #include "nldbl-compat.h"
2 
3 double
4 attribute_hidden
scalbnl(double x,int n)5 scalbnl (double x, int n)
6 {
7   return scalbn (x, n);
8 }
9