Subject: Re: Are gcc syntax extensions ok to use?
To: None <chief@bandits.org, tech-kern@netbsd.org>
From: Chris Torek <torek@BSDI.COM>
List: tech-kern
Date: 04/22/2001 01:57:10
Note also that C99 has named initializers using a different syntax:

    struct zorg doom = { .gloom = HEAVY, .when = "now" };

GCC supports this syntax, so if you have to use anything, this
is the one to use. :-)

Chris