Re: don't error for duplicate identical type definitions

2015-06-10 Thread Antoine Jacoutot
> Any objections? Considering I am the one who requested it, obviously no objection :-) I've successfully tested this with ports that used to need ports/lang/gcc/4.9 . So as far as I am concerned, OK for me. > Index: c-decl.c > ===

don't error for duplicate identical type definitions

2015-06-09 Thread Miod Vallat
Our current base compiler will abort with an error if it finds a typedef being redefined, even if the new definition is no different from the one it knows about. Allowing this kind of type redefinition is a new C11 feature, which some third-party software has already started using. Moreover, recen