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_init4.c
blob
f73b1134f7db5a06e27b9c7b3fb20e5e9e03a364
1
/* test .data.l[x] */
2
typedef
struct
{
3
int
type
;
4
union
{
5
char
b
[
20
];
6
short
s
[
10
];
7
long
l
[
5
];
8
}
data
;
9
}
foo
;
10
11
12
foo bar
= {
13
.
type
=
3
,
14
.
data
.
l
[
0
] =
4
15
};