Pristine Ack-5.5
[Ack-5.5.git] / lang / fortran / lib / libF77 / h_abs.c
1 #include "f2c.h"
2
3 extern integer s_cmp();
4
5 shortint h_abs(x)
6 shortint *x;
7 {
8 if(*x >= 0)
9         return(*x);
10 return(- *x);
11 }