2021-10-11 18:20:23 -03:00

15 lines
204 B
C

#ifndef lint
static char sccsid[] = "@(#)d_mod.c 1.1 92/07/30 SMI";
#endif
/*
* Copyright (c) 1987 by Sun Microsystems, Inc.
*/
double d_mod(x,y)
double *x, *y;
{
double fmod();
return fmod(*x,*y);
}