mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-23 15:32:26 +00: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;
|
|
}
|