mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +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;
|
||
|
}
|