1999-09-18 12:51:31 +02:00
|
|
|
#include "f2c.h"
|
|
|
|
|
2003-07-11 05:42:19 +02:00
|
|
|
double
|
|
|
|
d_sign (doublereal * a, doublereal * b)
|
1999-09-18 12:51:31 +02:00
|
|
|
{
|
2003-07-11 05:42:19 +02:00
|
|
|
double x;
|
|
|
|
x = (*a >= 0 ? *a : -*a);
|
|
|
|
return (*b >= 0 ? x : -x);
|
1999-09-18 12:51:31 +02:00
|
|
|
}
|