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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
struct-ini-2.c
blob
c785257ccbaa92776bbd09e8af7fffe16e163885
1
struct
{
2
int
a
:
4
;
3
int
:
4
;
4
int
b
:
4
;
5
int
c
:
4
;
6
}
x
= {
2
,
3
,
4
};
7
8
main
()
9
{
10
if
(
x
.
a
!=
2
)
11
abort
();
12
if
(
x
.
b
!=
3
)
13
abort
();
14
if
(
x
.
c
!=
4
)
15
abort
();
16
exit
(
0
);
17
}