repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git]
/
newlib
/
libm
/
machine
/
spu
/
sf_erf.c
blob
14e0dcd8293f568ff00742bd1f986a8797e19ccc
1
#include <math.h>
2
#include
"headers/erff.h"
3
4
float
erff
(
float
x
)
5
{
6
return
_erff
(
x
);
7
}
8
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).
12
*/
13
#include
"headers/erfcf.h"
14
15
float
erfcf
(
float
x
)
16
{
17
return
_erfcf
(
x
);
18
}