| 1234567891011121314151617 | /* * drem() wrapper for remainder(). * * Written by J.T. Conklin, <jtc@wimsey.com> * Placed into the Public Domain, 1994. */#include <math.h>libm_hidden_proto(remainder)doubledrem(x, y)	double x, y;{	return remainder(x, y);}
 |