V7M/src/libF77/r_mod.c

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

double r_mod(x,y)
float *x, *y;
{
return(*x - (*y) * ( (long int) (*x / *y)) );
}