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