gcc/libf2c/libF77/r_dim.c

8 lines
90 B
C

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