On 03/15/2012 09:19 AM, Akim Demaille wrote: > - #if __STDC_VERSION__ < 199901 && ! defined __GNUC__ && ! defined inline > - #define inline > + #if __STDC_VERSION__ < 199901 && ! defined __GNUC__ \ > + && ! defined inline
That change all looks good, except here I suggest this style:
#if (__STDC_VERSION__ < 199901 && ! defined __GNUC__ \
&& ! defined inline)
as the parens make the code a bit easier to read, and make it
work better with Emacs autoindenting.
