mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 16:23:25 -05:00
9 lines
100 B
C
9 lines
100 B
C
#include "f2c.h"
|
|
|
|
shortint
|
|
h_abs (shortint * x)
|
|
{
|
|
if (*x >= 0)
|
|
return (*x);
|
|
return (-*x);
|
|
}
|