Start development on BSD-SCCS
[unix-history] / .ref-BSD-3 / usr / src / libF77 / h_abs.c
CommitLineData
0ee0e326
BJ
1short h_abs(x)
2short *x;
3{
4if(*x >= 0)
5 return(*x);
6return(- *x);
7}