Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20010711-1.c
blob: b4b16399249486e95dd8def6f4ce123d9394aa47 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
void
foo
(
int
*
a
)
{}
int
main
()
{
int
a
;
if
(&
a
==
0
)
abort
();
else
{
foo
(&
a
);
exit
(
0
);
}
}