mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
09c656ca68
Obtained from: netlib.att.com
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);
|
|
}
|