summaryrefslogtreecommitdiffstats
path: root/contrib/libf2c/libF77/i_abs.c
blob: 2ed183a62258fda6324cdd752f2b458d6f0436b6 (plain)
1
2
3
4
5
6
7
8
9
#include "f2c.h"

integer
i_abs (integer * x)
{
  if (*x >= 0)
    return (*x);
  return (-*x);
}
OpenPOWER on IntegriCloud