OpenBSD-4.6/lib/libm/src/w_drem.c

Compare this file to the similar file:
Show the results in this format:

/*
 * drem() wrapper for remainder().
 * 
 * Written by J.T. Conklin, <jtc@wimsey.com>
 * Placed into the Public Domain, 1994.
 */

#include <math.h>

double
drem(x, y)
	double x, y;
{
	return remainder(x, y);
}