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

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

double expm1(double x)
{
  return _expm1(x);
}