# uuuxor -- bitwise exclusive "or" of two integer arguments # Phil Hodge, 8-Feb-89 function created int procedure uuuxor (a, b) int a, b # i: input values # o: the function value is a xor b #-- int xor() begin return (xor (a, b)) end