Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libm / machine / spu / sf_erf.c
blob14e0dcd8293f568ff00742bd1f986a8797e19ccc
1 #include <math.h>
2 #include "headers/erff.h"
4 float erff(float x)
6 return _erff(x);
9 /*
10 * The default sf_erf.c contains both erff and erfcf, erfcf was manually added
11 * here, it could be moved to a separate file (similar to s_erf.c).
13 #include "headers/erfcf.h"
15 float erfcf(float x)
17 return _erfcf(x);