xref
: /
netbsd-src
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_flex_array_packed.c
(revision 946379e7b37692fc43f68eb0d1c10daa0a7f3b6c)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
/* Allow packed c99 flexible arrays */
2
struct
{
3
int
x
;
4
char
y
[0];
5
}
__packed
foo
;
6
7