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
Use libm_alias_double for some dbl-64 functions.
[glibc.git]
/
sysdeps
/
ieee754
/
ldbl-opt
/
nldbl-remainder.c
blob
581dc78a4d5c64dd365728d8e26ac43ecffab805
1
#include
"nldbl-compat.h"
2
3
double
4
attribute_hidden
5
remainderl
(
double
x
,
double
y
)
6
{
7
return
remainder
(
x
,
y
);
8
}
9
extern
__typeof
(
remainderl
)
dreml attribute_hidden
;
10
weak_alias
(
remainderl
,
dreml
)