Dave Dodge wrote:
The standard definitely does not guarantee that a null pointer is the
same as all-bits-zero.  There have been a few real implementations
that used nonzero bits.

So? Casting takes care of that in our case, the only way to get the real NULL representation is by doing:

void *p = NULL;
int i = *(int *)&p;

Felix


_______________________________________________
Tinycc-devel mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/tinycc-devel

Reply via email to