# uuunot -- bitwise "not" of an integer argument # Phil Hodge, 8-Feb-89 function created int procedure uuunot (a) int a # i: input value # o: the function value is not a #-- int not() begin return (not (a)) end