opnsense-src/contrib/libf2c/libF77/d_dim.c

8 lines
102 B
C
Raw Normal View History

1999-09-18 06:51:31 -04:00
#include "f2c.h"
2003-07-10 23:42:19 -04:00
double
d_dim (doublereal * a, doublereal * b)
1999-09-18 06:51:31 -04:00
{
2003-07-10 23:42:19 -04:00
return (*a > *b ? *a - *b : 0);
1999-09-18 06:51:31 -04:00
}