ack/lang/fortran/lib/libF77/h_dim.c
1991-10-07 16:59:33 +00:00

10 lines
116 B
C

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