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
/
test1.c
blob
0e1a1a8323d9bc8d8ce10ddef38f57c6ba50be1e
1
/* C99 union initialization */
2
union
{
3
int
i
;
4
char
*
s
;
5
}
c
[] = {
6
{
i
:
1
},
7
{
s
:
"foo"
}
8
};