mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 05:47:18 -04: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);
|
|
}
|