mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-11 12:05:55 +00:00
16 lines
187 B
C
16 lines
187 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
extern int foo_alias;
|
|
extern void bar (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
bar ();
|
|
if (foo_alias != -1)
|
|
abort ();
|
|
printf ("PASS\n");
|
|
return 0;
|
|
}
|