1/*
2 * drem() wrapper for remainder().
3 *
4 * Written by J.T. Conklin, <jtc@wimsey.com>
5 * Placed into the Public Domain, 1994.
6 */
7
8#include <math.h>
9
10double
11drem(x, y)
12	double x, y;
13{
14	return remainder(x, y);
15}
16