mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-14 06:29:40 +08:00
10 lines
138 B
C
10 lines
138 B
C
#include "f2c.h"
|
|
|
|
double
|
|
d_sign (doublereal * a, doublereal * b)
|
|
{
|
|
double x;
|
|
x = (*a >= 0 ? *a : -*a);
|
|
return (*b >= 0 ? x : -x);
|
|
}
|