| 1234567891011121314151617 | #include "f2c.h"#ifdef __cplusplusextern "C" {#endif#ifdef KR_headersshortint h_dim(a,b) shortint *a, *b;#elseshortint h_dim(shortint *a, shortint *b)#endif{return( *a > *b ? *a - *b : 0);}#ifdef __cplusplus}#endif
 |