[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: const/volatile vs. -Werror
From: |
Paul Eggert |
Subject: |
Re: const/volatile vs. -Werror |
Date: |
Sat, 08 Apr 2006 11:15:01 -0700 |
User-agent: |
Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) |
address@hidden (Eric Blake) writes:
>> > -int * volatile y;])],
>> > +int * volatile y = (int *) 0;
>>
>> Why is that initialization needed? y is zero by default.
>
> Actually, this code snippet occurs as the second argument to
> AC_LANG_PROGRAM, meaning that they are local variables inside
> main().
Ah, sorry, my mistake.