w_drem.c revision 2117
179265Sdillon/*
279265Sdillon * drem() wrapper for remainder().
379265Sdillon *
479265Sdillon * Written by J.T. Conklin, <jtc@wimsey.com>
5118848Simp * Placed into the Public Domain, 1994.
6118848Simp */
7118848Simp
8118848Simp#include <math.h>
9118848Simp
10118848Simpdouble
11118848Simpdrem(x, y)
12118848Simp	double x, y;
13118848Simp{
14118848Simp	return remainder(x, y);
15118848Simp}
16118848Simp