repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libm
/
mathfp
/
w_drem.c
blob
d289bdaac9e11eb5e7a9ee1e82bf8813a05d88b9
1
/*
2
* drem() wrapper for remainder().
3
*
4
* Written by J.T. Conklin, <jtc@wimsey.com>
5
* Placed into the Public Domain, 1994.
6
*/
7
8
#include
"fdlibm.h"
9
10
double
11
drem
(
x
,
y
)
12
double
x
,
y
;
13
{
14
return
remainder
(
x
,
y
);
15
}