repo.or.cz
/
cake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added missing properties.
[cake.git]
/
compiler
/
mlib
/
w_drem.c
blob
0f6840934fef985673c24977072b7b67ed5da838
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 <math.h>
9
10
double
11
drem
(
x
,
y
)
12
double
x
,
y
;
13
{
14
return
remainder
(
x
,
y
);
15
}