repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Update.
[glibc.git]
/
sysdeps
/
stub
/
s_erfl.c
blob
e01bad206da8a56c2bdf5dc6ea0677a4414a6946
1
#include <math.h>
2
#include <stdio.h>
3
4
long double
5
__erfl
(
long double
x
)
6
{
7
fputs
(
"__erfl not implemented
\n
"
,
stderr
);
8
return
0.0
;
9
}
10
weak_alias
(
__erfl
,
erfl
)
11
12
stub_warning
(
erfl
)