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
/
990222-1.c
blob
98b94f39860454ac6100beb9e899b453fdbb754c
1
char
line
[
4
] = {
'1'
,
'9'
,
'9'
,
'\0'
};
2
3
int
main
()
4
{
5
char
*
ptr
=
line
+
3
;
6
7
while
((*--
ptr
+=
1
) >
'9'
) *
ptr
=
'0'
;
8
if
(
line
[
0
] !=
'2'
||
line
[
1
] !=
'0'
||
line
[
2
] !=
'0'
)
9
abort
();
10
return
0
;
11
}