gcc/libf2c/libF77/i_mod.c

7 lines
78 B
C
Raw Normal View History

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