4.2BSD/usr/src/usr.lib/libF77/i_dim.c

Compare this file to the similar file:
Show the results in this format:

/*
 *	"@(#)i_dim.c	1.1"
 */

long int i_dim(a,b)
long int *a, *b;
{
return( *a > *b ? *a - *b : 0);
}