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

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

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

/*
 * convert short ints to long.
 * Needed for literals in -I2 compiles.
 * used as follows:
 *	integer*4 long
 *	...
 *	call ftell(long(11))
 */

long long_(i)
short *i;
{	return((long)*i);	}