mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
9 lines
138 B
C
9 lines
138 B
C
#include "f2c.h"
|
|
|
|
shortint
|
|
h_sign (shortint * a, shortint * b)
|
|
{
|
|
shortint x;
|
|
x = (*a >= 0 ? *a : -*a);
|
|
return (*b >= 0 ? x : -x);
|
|
}
|