Sign in
ara-mdk
/
platform
/
bionic
/
b44f9600a38988749d9f893fc5d2e3b3a07e6938
/
.
/
libm
/
upstream-freebsd
/
lib
/
msun
/
src
/
w_drem.c
blob: 0f6840934fef985673c24977072b7b67ed5da838 [
file
] [
log
] [
blame
]
/*
* drem() wrapper for remainder().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include
<math.h>
double
drem
(
x
,
y
)
double
x
,
y
;
{
return
remainder
(
x
,
y
);
}