Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
bionic
/
470835b215c14aa5ff2368527feeff35bfb46a90
/
.
/
libm
/
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
);
}