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