repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
xlint
/
lint1
/
test17.c
blob
df907cd7a3cd75832fc11a34d5dbc333615d45f8
1
/* C9X struct/union member init, with nested union and trailing member */
2
union
node
{
3
void
*
next
;
4
char
*
data
;
5
};
6
struct
foo
{
7
int
b
;
8
union
node n
;
9
int
c
;
10
};
11
12
struct
foo f
= {
13
.
b
=
1
,
14
.
n
= { .
next
=
0
, },
15
.
c
=
1
16
};