summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/s_scalbn.c
blob: 58e161dfc4a6e019589fc0d0e658b924c30ba0c1 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/scalbn.h"

double scalbn(double x, int exp)
{
    return _scalbn(x, exp);
}