OpenLibm/src/w_drem.c

16 lines
211 B
C
Raw Normal View History

/*
* drem() wrapper for remainder().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
2011-12-15 06:59:35 +01:00
#include <math.h>
double
drem(x, y)
double x, y;
{
return remainder(x, y);
}