mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 01:11:30 -05:00
9 lines
134 B
C
9 lines
134 B
C
#include "f2c.h"
|
|
|
|
integer
|
|
i_sign (integer * a, integer * b)
|
|
{
|
|
integer x;
|
|
x = (*a >= 0 ? *a : -*a);
|
|
return (*b >= 0 ? x : -x);
|
|
}
|