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

double
r_abs (real * x)
{
  if (*x >= 0)
    return (*x);
  return (-*x);
}
OpenPOWER on IntegriCloud