8 lines
100 B
C
8 lines
100 B
C
#include "f2c.h"
|
|
|
|
shortint
|
|
h_dim (shortint * a, shortint * b)
|
|
{
|
|
return (*a > *b ? *a - *b : 0);
|
|
}
|