w_drem.c revision 302408
180529Sdd/*
280529Sdd * drem() wrapper for remainder().
3269534Sngie *
4269534Sngie * Written by J.T. Conklin, <jtc@wimsey.com>
580529Sdd * Placed into the Public Domain, 1994.
6189092Sed */
7152285Sru
8152285Sru#include <math.h>
9108429Sobrien
10108429Sobriendouble
1180529Sdddrem(x, y)
1280529Sdd	double x, y;
13110011Smarkm{
14108429Sobrien	return remainder(x, y);
15189092Sed}
16189092Sed