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