
March 10, 1995
7:02 a.m.
How about this? result = 0; for (i = 0; i < 4; ++i) result = (result << 8) | (codep[i] & 0xff); return((result >> 31) ? (result | (~0L << 32)) : result); This works on our Alpha's. - Tom