/* * drem() wrapper for remainder(). * * Written by J.T. Conklin, * Placed into the Public Domain, 1994. */ #include double drem(x, y) double x, y; { return remainder(x, y); }