gcc/libf2c/libF77/i_mod.c

8 lines
83 B
C

#include "f2c.h"
integer
i_mod (integer * a, integer * b)
{
return (*a % *b);
}