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

double
d_sign (doublereal * a, doublereal * b)
{
  double x;
  x = (*a >= 0 ? *a : -*a);
  return (*b >= 0 ? x : -x);
}
OpenPOWER on IntegriCloud