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

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