gcc/libf2c/libF77/h_dim.c

8 lines
100 B
C

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