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
/
zerolen-2.c
blob
446e5828362dfdd613a9fc10c0b3f680aa035316
1
extern
void
abort
(
void
);
2
3
typedef
int
word
__attribute__
((
mode
(
word
)));
4
5
struct
foo
6
{
7
word x
;
8
word y
[
0
];
9
};
10
11
int
main
()
12
{
13
if
(
sizeof
(
word
) !=
sizeof
(
struct
foo
))
14
abort
();
15
if
(
__alignof__
(
word
) !=
__alignof__
(
struct
foo
))
16
abort
();
17
return
0
;
18
}