Gitiles
Code Review
Sign In
gerrit.omnirom.org
/
android_bionic
/
ccc9d8dbf46b70e7777a1d0604b799e94f05a63c
/
.
/
libm
/
upstream-freebsd
/
lib
/
msun
/
src
/
w_drem.c
blob: 74008a5c8099020039e60bde6e1b47382d3d1cfd [
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
(
double
x
,
double
y
)
{
return
remainder
(
x
,
y
);
}