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