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_c99_struct_init.c
blob
a94cbd1638973b142d6d776094ba718310a2fe81
1
/* C99 struct initialization */
2
struct
{
3
int
i
;
4
char
*
s
;
5
}
c
[] = {
6
{ .
i
=
2
, },
7
{ .
s
=
"foo"
},
8
{ .
i
=
1
, .
s
=
"bar"
},
9
{ .
s
=
"foo"
, .
i
= -
1
},
10
};