1) UCB code to scroll portion of screen with al/dl works only for fullscreen
[unix-history] / lib / libF77 / r_sign.c
#include "f2c.h"
#ifdef KR_headers
double r_sign(a,b) real *a, *b;
#else
double r_sign(real *a, real *b)
#endif
{
double x;
x = (*a >= 0 ? *a : - *a);
return( *b >= 0 ? x : -x);
}