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
/
e_powl.c
blob
2fa7862ea56d10dd00bc4ab207feba371651d347
1
#include <math.h>
2
#include <stdio.h>
3
4
long double
5
__ieee754_powl
(
long double
x
,
long double
y
)
6
{
7
fputs
(
"__ieee754_powl not implemented
\n
"
,
stderr
);
8
return
0.0
;
9
}
10
11
stub_warning
(
__ieee754_powl
)