summaryrefslogtreecommitdiffstats
path: root/newlib/libm/machine/spu/sf_scalbn.c
blob: 67824dfacb1e8354a6cc985b7bded1c36f486a1e (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/scalbnf.h"

float scalbnf(float x, int exp)
{
    return _scalbnf(x, exp);
}