mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
18 lines
216 B
C
18 lines
216 B
C
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
extern int foo_alias;
|
||
|
extern char *bar ();
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
if (foo_alias != 0)
|
||
|
abort ();
|
||
|
bar ();
|
||
|
if (foo_alias != -1)
|
||
|
abort ();
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|