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

sf_erf.c « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14e0dcd8293f568ff00742bd1f986a8797e19ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <math.h>
#include "headers/erff.h"

float erff(float x)
{
  return _erff(x);
}

/*
 * The default sf_erf.c contains both erff and erfcf, erfcf was manually added
 * here, it could be moved to a separate file (similar to s_erf.c).
 */
#include "headers/erfcf.h"

float erfcf(float x)
{
  return _erfcf(x);
}