Re: [PATCH] Improve conformance to ISO C90

2016-10-14 Thread Ivan Zhakov
On 14 October 2016 at 15:24, Patrick Steinhardt wrote: > Hi, > > attached patch fixes compatibility with ISO C90. It fixes > trailing commas in enum lists as well as one case where variadic > macros are used, which are a feature of C99. What it does not fix > is

[PATCH] Improve conformance to ISO C90

2016-10-14 Thread Patrick Steinhardt
Hi, attached patch fixes compatibility with ISO C90. It fixes trailing commas in enum lists as well as one case where variadic macros are used, which are a feature of C99. What it does not fix is strings with overlength (C90 only allows for fixed strings with a maximum length of 509 characters).