gcc/libf2c/libF77/i_dim.c

8 lines
97 B
C

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