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
Drop main() prototype. Syncs with NetBSD-8
[minix.git]
/
tests
/
usr.bin
/
xlint
/
lint1
/
d_c99_union_init1.c
blob
0e1a1a8323d9bc8d8ce10ddef38f57c6ba50be1e
1
/* C99 union initialization */
2
union
{
3
int
i
;
4
char
*
s
;
5
}
c
[] = {
6
{
i
:
1
},
7
{
s
:
"foo"
}
8
};