Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
950706-1.c
blob: 919fd4592bc8564b6d06f3ce99e07d5ba2704f37 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
int
f
(
int
n
)
{
return
(
n
>
0
)
-
(
n
<
0
);
}
int
main
(
void
)
{
if
(
f
(-
1
)
!=
-
1
)
abort
();
if
(
f
(
1
)
!=
1
)
abort
();
if
(
f
(
0
)
!=
0
)
abort
();
exit
(
0
);
}