Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libm / mathfp / w_drem.c
blobd289bdaac9e11eb5e7a9ee1e82bf8813a05d88b9
1 /*
2 * drem() wrapper for remainder().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include "fdlibm.h"
10 double
11 drem(x, y)
12 double x, y;
14 return remainder(x, y);