"Manuel López-Ibáñez" <[EMAIL PROTECTED]> writes: [...]
| int main()
| {
| int i = NULL; // { dg-warning "" } converting NULL to non-pointer type
In many C implementations, NULL is defined as
#define NULL ((void *) 0)
which renders the above initialization ill-formed -- not just a warning.
-- Gaby
