Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wf_exp2.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c815cee5550553297e3e9a0b3aac07840dbfbdd3 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include "headers/exp2f.h"

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