repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove building with NOCRYPTO option
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_union_init2.c
blob
51d34d450f215c1e1ba63e4edf3fc3caaea77c99
1
/* C99 union initialization */
2
union
{
3
int
i
[
10
];
4
short
s
;
5
}
c
[] = {
6
{
s
:
2
},
7
{
i
: {
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
} },
8
};