Start development on BSD 4
[unix-history] / .ref-5cb41021d721f4e0ac572d592613f963e495d1ff / .ref-BSD-3 / usr / src / libF77 / i_abs.c
long int i_abs(x)
long int *x;
{
if(*x >= 0)
return(*x);
return(- *x);
}