ack/lang/fortran/lib/libF77/r_dim.c
1991-10-07 16:59:33 +00:00

8 lines
85 B
C

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