8 lines
85 B
C
8 lines
85 B
C
#include "f2c.h"
|
|
|
|
double r_dim(a,b)
|
|
real *a, *b;
|
|
{
|
|
return( *a > *b ? *a - *b : 0);
|
|
}
|