Re: gcc rejects enum/int compatibility

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Thank you for your response.

On Mon, 2014-12-29 at 16:05 -0400, Edwin Pujols wrote:
> >   extern enum { red, green, blue } foo;
> >   int foo = green;
> > ...
> > ...
> > Please explain me what is wrong.
> 
> You are declaring `foo' twice, 

This is correct, because 'foo' has external linkage.

> this works:
> 
> extern enum { red, green, blue } foo;
> 
> int bar = green;
> 
> int main(void)
> {
>   printf("bar = %d\n", bar);
>   return 0;
> }
> 





[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux