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
add missing files
[glibc.git]
/
sysdeps
/
stub
/
e_acosl.c
blob
5c10b526ccdfad09dae8d24e0926b3527b3c41e3
1
#include <math.h>
2
#include <stdio.h>
3
4
long double
5
__ieee754_acosl
(
long double
x
)
6
{
7
fputs
(
"__ieee754_acosl not implemented
\n
"
,
stderr
);
8
return
0.0
;
9
}
10
11
stub_warning
(
__ieee754_acosl
)