OpenLibm/src/w_drem.c

17 lines
251 B
C

/*
* drem() wrapper for remainder().
*
* Written by J.T. Conklin, <jtc@wimsey.com>
* Placed into the Public Domain, 1994.
*/
#include <openlibm.h>
#include "math_private.h"
DLLEXPORT double
drem(x, y)
double x, y;
{
return remainder(x, y);
}