Bell 32V development
[unix-history] / usr / src / libF77 / h_abs.c
short h_abs(x)
short *x;
{
if(*x >= 0)
return(*x);
return(- *x);
}