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