Cygwin: cygtls: rename sig to current_sig
[newlib-cygwin.git] / newlib / libm / math / wf_drem.c
blob7c3f7c58ecab291549c642b7c12683e82eeddc4b
1 /*
2 * dremf() wrapper for remainderf().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
8 #include "fdlibm.h"
10 float
11 #ifdef __STDC__
12 dremf(float x, float y)
13 #else
14 dremf(x, y)
15 float x, y;
16 #endif
18 return remainderf(x, y);