2.9BSD/usr/src/lib/libF77/h_ieor.c

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

/* IEOR fortran callable.     PLW 8/7/79.*/
int h_ieor(x,y)
	int *x,*y;
{
	return(*x ^ *y);
}