aboutsummaryrefslogtreecommitdiff
path: root/libf2c/libF77/r_dim.c
blob: 48d2fc7f7672468c2553a4904ee2e0f3ef39c7d7 (plain)
1
2
3
4
5
6
7
#include "f2c.h"

double
r_dim (real * a, real * b)
{
  return (*a > *b ? *a - *b : 0);
}