mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-17 07:08:57 +08:00
81fea2b1d1
"libf2c" directory. From-SVN: r17568
11 lines
144 B
C
11 lines
144 B
C
#include "f2c.h"
|
|
|
|
#ifdef KR_headers
|
|
integer i_mod(a,b) integer *a, *b;
|
|
#else
|
|
integer i_mod(integer *a, integer *b)
|
|
#endif
|
|
{
|
|
return( *a % *b);
|
|
}
|