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

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

float expm1f(float vx)
{
  return _expm1f(vx);
}