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

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