blob: 39b857840699d276f813e73de138df56b8d8d23b [file] [log] [blame]
log2 (a, b)
{
int c;
c = ~(~a & ~b);
return c;
}