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

float exp2f(float x)
{
    return _exp2f(x);
}