forked from KolibriOS/kolibrios
846fce0120
git-svn-id: svn://kolibrios.org@4874 a494cfbc-eb01-0410-851d-a64ba20cac60
16 lines
214 B
C
16 lines
214 B
C
/*
|
|
* drem() wrapper for remainder().
|
|
*
|
|
* Written by J.T. Conklin, <jtc@wimsey.com>
|
|
* Placed into the Public Domain, 1994.
|
|
*/
|
|
|
|
#include "fdlibm.h"
|
|
|
|
double
|
|
drem(x, y)
|
|
double x, y;
|
|
{
|
|
return remainder(x, y);
|
|
}
|