gcc/libf2c/libF77/d_dim.c

8 lines
102 B
C

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