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
/
20040319-1.c
blob
357932d9b247abd7db2f8f9e6343f2ba9f32eea5
1
int
2
blah
(
int
zzz
)
3
{
4
int
foo
;
5
if
(
zzz
>=
0
)
6
return
1
;
7
foo
= (
zzz
>=
0
? (
zzz
) : -(
zzz
));
8
return
foo
;
9
}
10
11
main
()
12
{
13
if
(
blah
(-
1
) !=
1
)
14
abort
();
15
else
16
exit
(
0
);
17
}