Rev 3541 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
#include "f2c.h"#ifdef KR_headersdouble d_sign(a,b) doublereal *a, *b;#elsedouble d_sign(doublereal *a, doublereal *b)#endif{double x;x = (*a >= 0 ? *a : - *a);return( *b >= 0 ? x : -x);}