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
etc/protocols - sync with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_compound_literals1.c
blob
cd1987ae17de65d8750f2dff162c749d7666a53c
1
/* compound literals */
2
3
struct
p
{
4
short
a
,
b
,
c
,
d
;
5
};
6
7
foo
()
8
{
9
struct
p me
= (
struct
p
) {
1
,
2
,
3
,
4
};
10
me
.
a
=
me
.
b
;
11
}