mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
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);
|
|
}
|