mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 00:34:33 -05:00
7 lines
97 B
C
7 lines
97 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_dim (integer * a, integer * b)
|
|
{
|
|
return (*a > *b ? *a - *b : 0);
|
|
}
|