xref
: /
freebsd-src
/
contrib
/
netbsd-tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_flex_array_packed.c
(revision fc55c20355d889bf3d3f81d94b3614a0c4253fa0)
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