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
Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git]
/
regress
/
usr.bin
/
xlint
/
lint1
/
test0.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
};