(THUMB_FUNCTION_PROFILER): Remove.
[official-gcc.git] / libf2c / libF77 / i_abs.c
blob2ed183a62258fda6324cdd752f2b458d6f0436b6
1 #include "f2c.h"
3 integer
4 i_abs (integer * x)
6 if (*x >= 0)
7 return (*x);
8 return (-*x);