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

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

float expf(float x)
{
    return _expf(x);
}