10 lines
86 B
C
10 lines
86 B
C
#include "f2c.h"
|
|
|
|
double r_abs(x)
|
|
real *x;
|
|
{
|
|
if(*x >= 0)
|
|
return(*x);
|
|
return(- *x);
|
|
}
|