Initial revision
[official-gcc.git] / gcc / f / runtime / libF77 / h_abs.c
blob73b82151ac1d78d21617656965c6abbdcb061e2a
1 #include "f2c.h"
3 #ifdef KR_headers
4 shortint h_abs(x) shortint *x;
5 #else
6 shortint h_abs(shortint *x)
7 #endif
9 if(*x >= 0)
10 return(*x);
11 return(- *x);