If I change the declaration of atest to a signed char on PPC I get the
same result as x86.
Does this mean the char in x86 is signed and in PPC it's unsigned?
Has it always been thus?
Yes, and yes. If it matters to you, you should explicitly use "signed
char" or "unsigned char"...
-Hollis