mirror of
https://github.com/opnsense/src.git
synced 2026-04-13 21:36:47 -04:00
7 lines
83 B
C
7 lines
83 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_mod (integer * a, integer * b)
|
|
{
|
|
return (*a % *b);
|
|
}
|