gcc/libf2c/libF77/r_dim.c

7 lines
85 B
C
Raw Normal View History

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