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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
921117-1.c
blob
2ed30fbeeef8688413120d50708cf1c75de5931b
1
struct
s
{
2
char
text
[
11
];
3
int
flag
;
4
}
cell
;
5
6
int
7
check
(
struct
s p
)
8
{
9
if
(
p
.
flag
!=
99
)
10
return
1
;
11
return
strcmp
(
p
.
text
,
"0123456789"
);
12
}
13
14
main
()
15
{
16
cell
.
flag
=
99
;
17
strcpy
(
cell
.
text
,
"0123456789"
);
18
19
if
(
check
(
cell
))
20
abort
();
21
exit
(
0
);
22
}