8 lines
83 B
C
8 lines
83 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_mod (integer * a, integer * b)
|
|
{
|
|
return (*a % *b);
|
|
}
|