mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-23 00:59:36 +08:00
7 lines
78 B
C
7 lines
78 B
C
|
#include "f2c.h"
|
||
|
|
||
|
integer i_mod(integer *a, integer *b)
|
||
|
{
|
||
|
return( *a % *b);
|
||
|
}
|